mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-05 08:17:04 +00:00
Update references to v0.7.0
Generated semi-automagically by running $ scripts/prepare-release.sh v0.7.0
This commit is contained in:
parent
8aa9460e66
commit
1f09af32fb
8 changed files with 13 additions and 13 deletions
|
@ -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.6.0/nfd-master.yaml.template
|
||||
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.7.0/nfd-master.yaml.template
|
||||
namespace/node-feature-discovery created
|
||||
...
|
||||
|
||||
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.6.0/nfd-worker-daemonset.yaml.template
|
||||
kubectl apply -f https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/v0.7.0/nfd-worker-daemonset.yaml.template
|
||||
daemonset.apps/nfd-worker created
|
||||
|
||||
kubectl -n node-feature-discovery get all
|
||||
|
|
|
@ -41,12 +41,12 @@ remote_theme: rundocs/jekyll-rtd-theme@v2.0.9
|
|||
# - vendor/ruby/
|
||||
|
||||
# Document versioning
|
||||
version: master
|
||||
version: v0.7
|
||||
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.7.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.7.0
|
||||
|
|
|
@ -67,7 +67,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.7.0
|
||||
name: nfd-master
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
|
@ -82,7 +82,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.7.0
|
||||
name: nfd-worker
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
|
|
|
@ -79,7 +79,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.7.0
|
||||
name: nfd-master
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
|
|
|
@ -72,7 +72,7 @@ spec:
|
|||
effect: "NoSchedule"
|
||||
containers:
|
||||
- name: nfd-master
|
||||
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.7.0
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
|
|
|
@ -21,7 +21,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.7.0
|
||||
name: nfd-worker
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
|
|
|
@ -30,7 +30,7 @@ spec:
|
|||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
image: gcr.io/k8s-staging-nfd/node-feature-discovery:master
|
||||
image: k8s.gcr.io/nfd/node-feature-discovery:v0.7.0
|
||||
name: nfd-worker
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
|
|
|
@ -44,8 +44,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.7.0", "Docker tag to use")
|
||||
e2eConfigFile = flag.String("nfd.e2e-config", "", "Configuration parameters for end-to-end tests")
|
||||
|
||||
conf *e2eConfig
|
||||
|
|
Loading…
Add table
Reference in a new issue