Skip to content

Commit

Permalink
Merge pull request #159 from elfosardo/new-registry-woohoo
Browse files Browse the repository at this point in the history
Use new registry registry.ci.openshift.org
  • Loading branch information
openshift-merge-robot committed Jun 18, 2021
2 parents 62939a7 + 379c7bc commit b2f88eb
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 33 deletions.
Expand Up @@ -23,7 +23,7 @@ spec:
serviceAccountName: cluster-baremetal-operator
containers:
- name: cluster-baremetal-operator
image: registry.svc.ci.openshift.org/openshift:cluster-baremetal-operator
image: registry.ci.openshift.org/openshift:cluster-baremetal-operator
command:
- "/usr/bin/cluster-baremetal-operator"
env:
Expand Down
2 changes: 1 addition & 1 deletion config/profiles/default/manager_auth_proxy_patch.yaml
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: kube-rbac-proxy
image: registry.svc.ci.openshift.org/openshift:kube-rbac-proxy
image: registry.ci.openshift.org/openshift:kube-rbac-proxy
args:
- "--secure-listen-address=0.0.0.0:8443"
- "--upstream=http://localhost:8080/"
Expand Down
Expand Up @@ -10,13 +10,13 @@ metadata:
data:
images.json: >
{
"clusterBaremetalOperator": "registry.svc.ci.openshift.org/openshift:cluster-baremetal-operator",
"kubeRBACProxy": "registry.svc.ci.openshift.org/openshift:kube-rbac-proxy",
"baremetalOperator": "registry.svc.ci.openshift.org/openshift:baremetal-operator",
"baremetalIronic": "registry.svc.ci.openshift.org/openshift:ironic",
"baremetalIronicInspector": "registry.svc.ci.openshift.org/openshift:ironic-inspector",
"baremetalIpaDownloader": "registry.svc.ci.openshift.org/openshift:ironic-ipa-downloader",
"baremetalMachineOsDownloader": "registry.svc.ci.openshift.org/openshift:ironic-machine-os-downloader",
"baremetalStaticIpManager": "registry.svc.ci.openshift.org/openshift:ironic-static-ip-manager"
"clusterBaremetalOperator": "registry.ci.openshift.org/openshift:cluster-baremetal-operator",
"kubeRBACProxy": "registry.ci.openshift.org/openshift:kube-rbac-proxy",
"baremetalOperator": "registry.ci.openshift.org/openshift:baremetal-operator",
"baremetalIronic": "registry.ci.openshift.org/openshift:ironic",
"baremetalIronicInspector": "registry.ci.openshift.org/openshift:ironic-inspector",
"baremetalIpaDownloader": "registry.ci.openshift.org/openshift:ironic-ipa-downloader",
"baremetalMachineOsDownloader": "registry.ci.openshift.org/openshift:ironic-machine-os-downloader",
"baremetalStaticIpManager": "registry.ci.openshift.org/openshift:ironic-static-ip-manager"
}
Expand Up @@ -36,7 +36,7 @@ spec:
fieldPath: metadata.namespace
- name: METRICS_PORT
value: "8080"
image: registry.svc.ci.openshift.org/openshift:cluster-baremetal-operator
image: registry.ci.openshift.org/openshift:cluster-baremetal-operator
name: cluster-baremetal-operator
ports:
- containerPort: 9443
Expand All @@ -61,7 +61,7 @@ spec:
- --config-file=/etc/kube-rbac-proxy/config-file.yaml
- --logtostderr=true
- --v=10
image: registry.svc.ci.openshift.org/openshift:kube-rbac-proxy
image: registry.ci.openshift.org/openshift:kube-rbac-proxy
name: kube-rbac-proxy
ports:
- containerPort: 8443
Expand Down
16 changes: 8 additions & 8 deletions manifests/image-references
Expand Up @@ -6,32 +6,32 @@ spec:
- name: cluster-baremetal-operator
from:
kind: DockerImage
name: registry.svc.ci.openshift.org/openshift:cluster-baremetal-operator
name: registry.ci.openshift.org/openshift:cluster-baremetal-operator
- name: baremetal-operator
from:
kind: DockerImage
name: registry.svc.ci.openshift.org/openshift:baremetal-operator
name: registry.ci.openshift.org/openshift:baremetal-operator
- name: ironic
from:
kind: DockerImage
name: registry.svc.ci.openshift.org/openshift:ironic
name: registry.ci.openshift.org/openshift:ironic
- name: ironic-inspector
from:
kind: DockerImage
name: registry.svc.ci.openshift.org/openshift:ironic-inspector
name: registry.ci.openshift.org/openshift:ironic-inspector
- name: ironic-ipa-downloader
from:
kind: DockerImage
name: registry.svc.ci.openshift.org/openshift:ironic-ipa-downloader
name: registry.ci.openshift.org/openshift:ironic-ipa-downloader
- name: ironic-machine-os-downloader
from:
kind: DockerImage
name: registry.svc.ci.openshift.org/openshift:ironic-machine-os-downloader
name: registry.ci.openshift.org/openshift:ironic-machine-os-downloader
- name: ironic-static-ip-manager
from:
kind: DockerImage
name: registry.svc.ci.openshift.org/openshift:ironic-static-ip-manager
name: registry.ci.openshift.org/openshift:ironic-static-ip-manager
- name: kube-rbac-proxy
from:
kind: DockerImage
name: registry.svc.ci.openshift.org/openshift:kube-rbac-proxy
name: registry.ci.openshift.org/openshift:kube-rbac-proxy
12 changes: 6 additions & 6 deletions provisioning/container_images_test.go
Expand Up @@ -6,12 +6,12 @@ import (

var (
TestImagesFile = "sample_images.json"
expectedBaremetalOperator = "registry.svc.ci.openshift.org/openshift:baremetal-operator"
expectedIronic = "registry.svc.ci.openshift.org/openshift:ironic"
expectedIronicInspector = "registry.svc.ci.openshift.org/openshift:ironic-inspector"
expectedIronicIpaDownloader = "registry.svc.ci.openshift.org/openshift:ironic-ipa-downloader"
expectedMachineOsDownloader = "registry.svc.ci.openshift.org/openshift:ironic-machine-os-downloader"
expectedIronicStaticIpManager = "registry.svc.ci.openshift.org/openshift:ironic-static-ip-manager"
expectedBaremetalOperator = "registry.ci.openshift.org/openshift:baremetal-operator"
expectedIronic = "registry.ci.openshift.org/openshift:ironic"
expectedIronicInspector = "registry.ci.openshift.org/openshift:ironic-inspector"
expectedIronicIpaDownloader = "registry.ci.openshift.org/openshift:ironic-ipa-downloader"
expectedMachineOsDownloader = "registry.ci.openshift.org/openshift:ironic-machine-os-downloader"
expectedIronicStaticIpManager = "registry.ci.openshift.org/openshift:ironic-static-ip-manager"
)

func TestGetContainerImages(t *testing.T) {
Expand Down
14 changes: 7 additions & 7 deletions provisioning/sample_images.json
@@ -1,9 +1,9 @@
{
"clusterBaremetalOperator": "registry.svc.ci.openshift.org/openshift:cluster-baremetal-operator",
"baremetalOperator": "registry.svc.ci.openshift.org/openshift:baremetal-operator",
"baremetalIronic": "registry.svc.ci.openshift.org/openshift:ironic",
"baremetalIronicInspector": "registry.svc.ci.openshift.org/openshift:ironic-inspector",
"baremetalIpaDownloader": "registry.svc.ci.openshift.org/openshift:ironic-ipa-downloader",
"baremetalMachineOsDownloader": "registry.svc.ci.openshift.org/openshift:ironic-machine-os-downloader",
"baremetalStaticIpManager": "registry.svc.ci.openshift.org/openshift:ironic-static-ip-manager"
"clusterBaremetalOperator": "registry.ci.openshift.org/openshift:cluster-baremetal-operator",
"baremetalOperator": "registry.ci.openshift.org/openshift:baremetal-operator",
"baremetalIronic": "registry.ci.openshift.org/openshift:ironic",
"baremetalIronicInspector": "registry.ci.openshift.org/openshift:ironic-inspector",
"baremetalIpaDownloader": "registry.ci.openshift.org/openshift:ironic-ipa-downloader",
"baremetalMachineOsDownloader": "registry.ci.openshift.org/openshift:ironic-machine-os-downloader",
"baremetalStaticIpManager": "registry.ci.openshift.org/openshift:ironic-static-ip-manager"
}

0 comments on commit b2f88eb

Please sign in to comment.