Skip to content

Commit ffa4d22

Browse files
authored
Update to quay.io in Makefile (#144)
1 parent 73fc324 commit ffa4d22

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
3030
#
3131
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
3232
# nginx/nginx-ingress-operator-bundle:$VERSION and nginx/nginx-ingress-operator-catalog:$VERSION.
33-
IMAGE_TAG_BASE ?= nginx/nginx-ingress-operator
33+
IMAGE_TAG_BASE ?= quay.io/nginx/nginx-ingress-operator
3434

3535
# BUNDLE_IMG defines the image:tag used for the bundle.
3636
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)

bundle/manifests/nginx-ingress-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ spec:
394394
- --metrics-bind-address=127.0.0.1:8080
395395
- --leader-elect
396396
- --leader-election-id=nginx-ingress-operator
397-
image: nginx/nginx-ingress-operator:1.5.0
397+
image: quay.io/nginx/nginx-ingress-operator:1.5.0
398398
livenessProbe:
399399
httpGet:
400400
path: /healthz

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
44
kind: Kustomization
55
images:
66
- name: controller
7-
newName: nginx/nginx-ingress-operator
7+
newName: quay.io/nginx/nginx-ingress-operator
88
newTag: 1.5.0

hack/get_image_info.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
image=$1
3+
image="${1#quay.io/}"
44
version=$2
55

66
response=$(curl -sSfL -w '%{header_json}' -H "Accept: application/vnd.oci.image.index.v1+json" "https://quay.io/v2/${image}/manifests/${version}" | jq -s)

0 commit comments

Comments
 (0)