Skip to content

Commit 2a3ef4c

Browse files
authored
Update hypershift plugin image references to use the new repository path (#1790)
Signed-off-by: Tiger Kaovilai <[email protected]>
1 parent c2e2a32 commit 2a3ef4c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

bundle/manifests/oadp-operator.clusterserviceversion.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ spec:
11201120
- name: RELATED_IMAGE_KUBEVIRT_VELERO_PLUGIN
11211121
value: quay.io/konveyor/kubevirt-velero-plugin:v0.7.0
11221122
- name: RELATED_IMAGE_HYPERSHIFT_VELERO_PLUGIN
1123-
value: quay.io/redhat-user-workloads/crt-redhat-acm-tenant/hypershift-oadp-plugin-main:latest
1123+
value: quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-main:main
11241124
- name: RELATED_IMAGE_MUSTGATHER
11251125
value: registry.redhat.io/oadp/oadp-mustgather-rhel8:v1.2
11261126
- name: RELATED_IMAGE_NON_ADMIN_CONTROLLER
@@ -1281,7 +1281,7 @@ spec:
12811281
name: velero-plugin-for-gcp
12821282
- image: quay.io/konveyor/kubevirt-velero-plugin:v0.7.0
12831283
name: kubevirt-velero-plugin
1284-
- image: quay.io/redhat-user-workloads/crt-redhat-acm-tenant/hypershift-oadp-plugin-main:latest
1284+
- image: quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-main:main
12851285
name: hypershift-velero-plugin
12861286
- image: registry.redhat.io/oadp/oadp-mustgather-rhel8:v1.2
12871287
name: mustgather

config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ spec:
7777
- name: RELATED_IMAGE_KUBEVIRT_VELERO_PLUGIN
7878
value: quay.io/konveyor/kubevirt-velero-plugin:v0.7.0
7979
- name: RELATED_IMAGE_HYPERSHIFT_VELERO_PLUGIN
80-
value: quay.io/redhat-user-workloads/crt-redhat-acm-tenant/hypershift-oadp-plugin-main:latest
80+
value: quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-main:main
8181
- name: RELATED_IMAGE_MUSTGATHER
8282
value: registry.redhat.io/oadp/oadp-mustgather-rhel8:v1.2
8383
- name: RELATED_IMAGE_NON_ADMIN_CONTROLLER

pkg/common/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const (
7575
GCPPluginImage = "quay.io/konveyor/velero-plugin-for-gcp:latest"
7676
RegistryImage = "quay.io/konveyor/registry:latest"
7777
KubeVirtPluginImage = "quay.io/konveyor/kubevirt-velero-plugin:v0.7.0"
78-
HypershiftPluginImage = "quay.io/redhat-user-workloads/crt-redhat-acm-tenant/hypershift-oadp-plugin-main:latest"
78+
HypershiftPluginImage = "quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-main:main"
7979
)
8080

8181
// Plugin names

pkg/credentials/credentials_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,9 +464,9 @@ func TestCredentials_getPluginImage(t *testing.T) {
464464
},
465465
},
466466
pluginName: oadpv1alpha1.DefaultPluginHypershift,
467-
wantImage: "quay.io/redhat-user-workloads/crt-redhat-acm-tenant/hypershift-oadp-plugin-main:latest",
467+
wantImage: "quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-main:main",
468468
setEnvVars: map[string]string{
469-
"RELATED_IMAGE_HYPERSHIFT_VELERO_PLUGIN": "quay.io/redhat-user-workloads/crt-redhat-acm-tenant/hypershift-oadp-plugin-main:latest",
469+
"RELATED_IMAGE_HYPERSHIFT_VELERO_PLUGIN": "quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-main:main",
470470
},
471471
},
472472
}

tests/e2e/lib/hcp/dpa.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func (h *HCHandler) AddHCPPluginToDPA(namespace, name string, overrides bool) er
4141

4242
if overrides {
4343
dpa.Spec.UnsupportedOverrides = map[oadpv1alpha1.UnsupportedImageKey]string{
44-
oadpv1alpha1.HypershiftPluginImageKey: "quay.io/redhat-user-workloads/crt-redhat-acm-tenant/hypershift-oadp-plugin-main:latest",
44+
oadpv1alpha1.HypershiftPluginImageKey: "quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-main:main",
4545
}
4646
}
4747

tests/e2e/lib/hcp/dpa_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func TestRemoveHCPPluginFromDPA(t *testing.T) {
146146
},
147147
},
148148
UnsupportedOverrides: map[oadpv1alpha1.UnsupportedImageKey]string{
149-
oadpv1alpha1.HypershiftPluginImageKey: "quay.io/redhat-user-workloads/crt-redhat-acm-tenant/hypershift-oadp-plugin-main:latest",
149+
oadpv1alpha1.HypershiftPluginImageKey: "quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-main:main",
150150
},
151151
},
152152
},

0 commit comments

Comments
 (0)