Skip to content

Commit 98a60a4

Browse files
committed
Use ghcr.io/k8snetworkplumbingwg registry in manifest
Signed-off-by: Yury Kulazhenkov <[email protected]>
1 parent 8692179 commit 98a60a4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
REGISTRY ?= quay.io/kubevirt
1+
REGISTRY ?= ghcr.io/k8snetworkplumbingwg
22
IMAGE_TAG ?= latest
33
IMAGE_GIT_TAG ?= $(shell git describe --abbrev=8 --tags)
44

cluster/sync.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ REGISTRY=$registry make docker-push
3636

3737
ovs_cni_manifest="./examples/ovs-cni.yml"
3838

39-
sed 's/quay.io\/kubevirt/registry:5000/g' examples/ovs-cni.yml | ./cluster/kubectl.sh delete --ignore-not-found -f -
39+
sed 's/ghcr.io\/k8snetworkplumbingwg/registry:5000/g' examples/ovs-cni.yml | ./cluster/kubectl.sh delete --ignore-not-found -f -
4040

4141
# Delete daemon sets that were deprecated/renamed
4242
./cluster/kubectl.sh -n kube-system delete --ignore-not-found ds ovs-cni-plugin-amd64
@@ -50,4 +50,4 @@ until [ $(check_deleted "-f $ovs_cni_manifest") -eq 1 ]; do sleep 1; done
5050
until [ $(check_deleted "ds ovs-cni-plugin-amd64") -eq 1 ]; do sleep 1; done
5151
until [ $(check_deleted "ds ovs-vsctl-amd64") -eq 1 ]; do sleep 1; done
5252

53-
sed 's/quay.io\/kubevirt/registry:5000/g' examples/ovs-cni.yml | ./cluster/kubectl.sh apply -f -
53+
sed 's/ghcr.io\/k8snetworkplumbingwg/registry:5000/g' examples/ovs-cni.yml | ./cluster/kubectl.sh apply -f -

examples/ovs-cni.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
effect: NoSchedule
3434
initContainers:
3535
- name: ovs-cni-plugin
36-
image: quay.io/kubevirt/ovs-cni-plugin:latest
36+
image: ghcr.io/k8snetworkplumbingwg/ovs-cni-plugin:latest
3737
command: ["/bin/sh","-c"]
3838
args:
3939
- >
@@ -53,7 +53,7 @@ spec:
5353
priorityClassName: system-node-critical
5454
containers:
5555
- name: ovs-cni-marker
56-
image: quay.io/kubevirt/ovs-cni-plugin:latest
56+
image: ghcr.io/k8snetworkplumbingwg/ovs-cni-plugin:latest
5757
imagePullPolicy: IfNotPresent
5858
securityContext:
5959
privileged: true

0 commit comments

Comments
 (0)