From 99a1613b75b6dab64bb6ea711c3126db826812a0 Mon Sep 17 00:00:00 2001 From: Adrian Chiris Date: Tue, 16 Mar 2021 14:27:37 +0000 Subject: [PATCH] update release Signed-off-by: Adrian Chiris --- README.md | 4 ++-- deployment/node-feature-discovery/Chart.yaml | 2 +- deployment/node-feature-discovery/values.yaml | 4 ++-- docs/_config.yml | 6 +++--- nfd-daemonset-combined.yaml.template | 8 ++++---- nfd-master.yaml.template | 4 ++-- nfd-prune.yaml.template | 4 ++-- nfd-worker-daemonset.yaml.template | 4 ++-- nfd-worker-job.yaml.template | 4 ++-- test/e2e/node_feature_discovery.go | 4 ++-- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index c08bcbb2a2..bcb6aef1db 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.7.0/nfd-master.yaml.template +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.0/nfd-master.yaml.template namespace/node-feature-discovery created ... -$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.7.0/nfd-worker-daemonset.yaml.template +$ kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.8.0/nfd-worker-daemonset.yaml.template daemonset.apps/nfd-worker created $ kubectl -n node-feature-discovery get all diff --git a/deployment/node-feature-discovery/Chart.yaml b/deployment/node-feature-discovery/Chart.yaml index 42323324e4..d7326f2b2a 100644 --- a/deployment/node-feature-discovery/Chart.yaml +++ b/deployment/node-feature-discovery/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: master +appVersion: v0.8.0 description: | Detects hardware features available on each node in a Kubernetes cluster, and advertises those features using node labels. diff --git a/deployment/node-feature-discovery/values.yaml b/deployment/node-feature-discovery/values.yaml index 2660d3a7f0..60a0923a3c 100644 --- a/deployment/node-feature-discovery/values.yaml +++ b/deployment/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/docs/_config.yml b/docs/_config.yml index 31882c376b..4998284aae 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -41,12 +41,12 @@ remote_theme: rundocs/jekyll-rtd-theme@v2.0.9 # - vendor/ruby/ # Document versioning -version: master +version: v0.8 display_version_list: true # Release is used to make external links to point to the correct blobs in the # Github repo -release: master +release: v0.8.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.8.0 diff --git a/nfd-daemonset-combined.yaml.template b/nfd-daemonset-combined.yaml.template index 1a912e50ad..38be2f03d2 100644 --- a/nfd-daemonset-combined.yaml.template +++ b/nfd-daemonset-combined.yaml.template @@ -67,8 +67,8 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.0 + imagePullPolicy: IfNotPresent name: nfd-master securityContext: allowPrivilegeEscalation: false @@ -83,8 +83,8 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.0 + imagePullPolicy: IfNotPresent name: nfd-worker securityContext: allowPrivilegeEscalation: false diff --git a/nfd-master.yaml.template b/nfd-master.yaml.template index c628324fd5..c186f22469 100644 --- a/nfd-master.yaml.template +++ b/nfd-master.yaml.template @@ -81,8 +81,8 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.0 + imagePullPolicy: IfNotPresent name: nfd-master securityContext: allowPrivilegeEscalation: false diff --git a/nfd-prune.yaml.template b/nfd-prune.yaml.template index a154683ee9..7dde3e45ea 100644 --- a/nfd-prune.yaml.template +++ b/nfd-prune.yaml.template @@ -74,8 +74,8 @@ spec: effect: "NoSchedule" 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.8.0 + imagePullPolicy: IfNotPresent securityContext: allowPrivilegeEscalation: false capabilities: diff --git a/nfd-worker-daemonset.yaml.template b/nfd-worker-daemonset.yaml.template index 603523a266..780fd9f1fb 100644 --- a/nfd-worker-daemonset.yaml.template +++ b/nfd-worker-daemonset.yaml.template @@ -23,8 +23,8 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.0 + imagePullPolicy: IfNotPresent name: nfd-worker securityContext: allowPrivilegeEscalation: false diff --git a/nfd-worker-job.yaml.template b/nfd-worker-job.yaml.template index a9c7df96c6..c88a666be3 100644 --- a/nfd-worker-job.yaml.template +++ b/nfd-worker-job.yaml.template @@ -32,8 +32,8 @@ spec: valueFrom: fieldRef: fieldPath: spec.nodeName - image: gcr.io/k8s-staging-nfd/node-feature-discovery:master - imagePullPolicy: Always + image: k8s.gcr.io/nfd/node-feature-discovery:v0.8.0 + imagePullPolicy: IfNotPresent name: nfd-worker securityContext: allowPrivilegeEscalation: false diff --git a/test/e2e/node_feature_discovery.go b/test/e2e/node_feature_discovery.go index 78de00590a..0d80a9232e 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.8.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")