Skip to content

Commit

Permalink
update release
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Chiris <[email protected]>
  • Loading branch information
adrianchiris committed Mar 16, 2021
1 parent 87975d0 commit 99a1613
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deployment/node-feature-discovery/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions deployment/node-feature-discovery/values.yaml
Original file line number Diff line number Diff line change
@@ -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: []
Expand Down
6 changes: 3 additions & 3 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ remote_theme: rundocs/[email protected]
# - 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
8 changes: 4 additions & 4 deletions nfd-daemonset-combined.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions nfd-master.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions nfd-prune.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions nfd-worker-daemonset.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions nfd-worker-job.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/node_feature_discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 99a1613

Please sign in to comment.