1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-31 04:04:51 +00:00

Update kubernetes registry to registry.k8s.io

Update registry location for non-nfd images.
This commit is contained in:
Markus Lehtonen 2022-09-12 11:23:04 +03:00
parent 4f34451db8
commit f21315d85f
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ metadata:
name: feature-dependent-pod name: feature-dependent-pod
spec: spec:
containers: containers:
- image: k8s.gcr.io/pause - image: registry.k8s.io/pause
name: pause name: pause
nodeSelector: nodeSelector:
# Select a valid feature # Select a valid feature

View file

@ -40,7 +40,7 @@ import (
var pullIfNotPresent = flag.Bool("nfd.pull-if-not-present", false, "Pull Images if not present - not always") var pullIfNotPresent = flag.Bool("nfd.pull-if-not-present", false, "Pull Images if not present - not always")
const ( const (
PauseImage = "k8s.gcr.io/pause" PauseImage = "registry.k8s.io/pause"
) )
// GuarenteedSleeperPod makes a Guaranteed QoS class Pod object which long enough forever but requires `cpuLimit` exclusive CPUs. // GuarenteedSleeperPod makes a Guaranteed QoS class Pod object which long enough forever but requires `cpuLimit` exclusive CPUs.