From 5127b371d52bf70bd905c671aea928809c07baa9 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Thu, 19 Aug 2021 18:35:27 +0300 Subject: [PATCH] Update references to v0.9.0 Generated with: scripts/prepare-release.sh v0.9.0 markus.lehtonen@intel.com --- README.md | 4 ++-- .../master-worker-combined/master-worker-daemonset.yaml | 8 ++++---- deployment/base/master/master-deployment.yaml | 4 ++-- deployment/base/worker-daemonset/worker-daemonset.yaml | 4 ++-- deployment/base/worker-job/worker-job.yaml | 4 ++-- deployment/helm/node-feature-discovery/Chart.yaml | 2 +- deployment/helm/node-feature-discovery/README.md | 2 +- deployment/helm/node-feature-discovery/values.yaml | 4 ++-- deployment/overlays/prune/master-job.yaml | 4 ++-- docs/_config.yml | 6 +++--- test/e2e/node_feature_discovery.go | 4 ++-- 11 files changed, 23 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 421e56145..8456a0d21 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ features and system configuration! #### Quick-start – the short-short version ```bash -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.2/nfd-master.yaml.template +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.9.0/nfd-master.yaml.template namespace/node-feature-discovery created ... -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.2/nfd-worker-daemonset.yaml.template +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.9.0/nfd-worker-daemonset.yaml.template daemonset.apps/nfd-worker created $ kubectl -n node-feature-discovery get all diff --git a/deployment/base/master-worker-combined/master-worker-daemonset.yaml b/deployment/base/master-worker-combined/master-worker-daemonset.yaml index e05faf5d3..b7efa472a 100644 --- a/deployment/base/master-worker-combined/master-worker-daemonset.yaml +++ b/deployment/base/master-worker-combined/master-worker-daemonset.yaml @@ -17,8 +17,8 @@ spec: tolerations: [] containers: - name: nfd-master - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.9.0 + imagePullPolicy: IfNotPresent livenessProbe: exec: command: ["/usr/bin/grpc_health_probe", "-addr=:8080"] @@ -33,8 +33,8 @@ spec: command: - "nfd-master" - name: nfd-worker - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.9.0 + imagePullPolicy: IfNotPresent command: - "nfd-worker" args: [] diff --git a/deployment/base/master/master-deployment.yaml b/deployment/base/master/master-deployment.yaml index aa88f66f0..e5a281035 100644 --- a/deployment/base/master/master-deployment.yaml +++ b/deployment/base/master/master-deployment.yaml @@ -18,8 +18,8 @@ spec: tolerations: [] containers: - name: nfd-master - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.9.0 + imagePullPolicy: IfNotPresent livenessProbe: exec: command: ["/usr/bin/grpc_health_probe", "-addr=:8080"] diff --git a/deployment/base/worker-daemonset/worker-daemonset.yaml b/deployment/base/worker-daemonset/worker-daemonset.yaml index 8f02fd0e1..aa26d27b7 100644 --- a/deployment/base/worker-daemonset/worker-daemonset.yaml +++ b/deployment/base/worker-daemonset/worker-daemonset.yaml @@ -16,8 +16,8 @@ spec: dnsPolicy: ClusterFirstWithHostNet containers: - name: nfd-worker - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.9.0 + imagePullPolicy: IfNotPresent command: - "nfd-worker" args: diff --git a/deployment/base/worker-job/worker-job.yaml b/deployment/base/worker-job/worker-job.yaml index dd2f671dc..d46eedcb7 100644 --- a/deployment/base/worker-job/worker-job.yaml +++ b/deployment/base/worker-job/worker-job.yaml @@ -26,8 +26,8 @@ spec: - nfd-worker containers: - name: nfd-worker - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.9.0 + imagePullPolicy: IfNotPresent command: - "nfd-worker" args: diff --git a/deployment/helm/node-feature-discovery/Chart.yaml b/deployment/helm/node-feature-discovery/Chart.yaml index c3691c7d4..43e38cf8f 100644 --- a/deployment/helm/node-feature-discovery/Chart.yaml +++ b/deployment/helm/node-feature-discovery/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: master +appVersion: v0.9.0 description: | Detects hardware features available on each node in a Kubernetes cluster, and advertises those features using node labels. diff --git a/deployment/helm/node-feature-discovery/README.md b/deployment/helm/node-feature-discovery/README.md index 956788531..8ba72150a 100644 --- a/deployment/helm/node-feature-discovery/README.md +++ b/deployment/helm/node-feature-discovery/README.md @@ -6,5 +6,5 @@ labels. NFD provides flexible configuration and extension points for a wide range of vendor and application specific node labeling needs. See -[NFD documentation](https://kubernetes-sigs.github.io/node-feature-discovery/master/get-started/deployment-and-usage.html#deployment-with-helm) +[NFD documentation](https://kubernetes-sigs.github.io/node-feature-discovery/v0.9/get-started/deployment-and-usage.html#deployment-with-helm) for deployment instructions. diff --git a/deployment/helm/node-feature-discovery/values.yaml b/deployment/helm/node-feature-discovery/values.yaml index b6a3b8070..5b4c5ba20 100644 --- a/deployment/helm/node-feature-discovery/values.yaml +++ b/deployment/helm/node-feature-discovery/values.yaml @@ -1,7 +1,7 @@ image: - repository: gcr.io/k8s-staging-nfd/node-feature-discovery + repository: k8s.gcr.io/nfd/node-feature-discovery # This should be set to 'IfNotPresent' for released version - pullPolicy: Always + pullPolicy: IfNotPresent # tag, if defined will use the given image tag, else Chart.AppVersion will be used # tag imagePullSecrets: [] diff --git a/deployment/overlays/prune/master-job.yaml b/deployment/overlays/prune/master-job.yaml index 9ea1c24d3..59c8676f7 100644 --- a/deployment/overlays/prune/master-job.yaml +++ b/deployment/overlays/prune/master-job.yaml @@ -15,8 +15,8 @@ spec: tolerations: [] containers: - name: nfd-master - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.9.0 + imagePullPolicy: IfNotPresent command: - "nfd-master" args: diff --git a/docs/_config.yml b/docs/_config.yml index ae6531cf6..29c982659 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -41,13 +41,13 @@ remote_theme: rundocs/jekyll-rtd-theme@v2.0.9 # - vendor/ruby/ # Document versioning -version: master +version: v0.9 display_version_list: true # Release is the full released version number. Used to make external links to # point to the correct blobs in the Github repo. This is also the version shown # in the sidebar (top left corner of the page) -release: master +release: v0.9.0 # Container image which to point to in the documentation -container_image: gcr.io/k8s-staging-nfd/node-feature-discovery:master +container_image: k8s.gcr.io/nfd/node-feature-discovery:v0.9.0 diff --git a/test/e2e/node_feature_discovery.go b/test/e2e/node_feature_discovery.go index 55b0a4c31..ded6d914a 100644 --- a/test/e2e/node_feature_discovery.go +++ b/test/e2e/node_feature_discovery.go @@ -46,8 +46,8 @@ import ( ) var ( - dockerRepo = flag.String("nfd.repo", "gcr.io/k8s-staging-nfd/node-feature-discovery", "Docker repository to fetch image from") - dockerTag = flag.String("nfd.tag", "master", "Docker tag to use") + dockerRepo = flag.String("nfd.repo", "k8s.gcr.io/nfd/node-feature-discovery", "Docker repository to fetch image from") + dockerTag = flag.String("nfd.tag", "v0.9.0", "Docker tag to use") e2eConfigFile = flag.String("nfd.e2e-config", "", "Configuration parameters for end-to-end tests") openShift = flag.Bool("nfd.openshift", false, "Enable OpenShift specific bits")