Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bundle/manifests/oadp-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ spec:
- name: RELATED_IMAGE_VELERO_PLUGIN_FOR_CSI
value: quay.io/konveyor/velero-plugin-for-csi:oadp-1.3
- name: RELATED_IMAGE_KUBEVIRT_VELERO_PLUGIN
value: quay.io/konveyor/kubevirt-velero-plugin:v0.2.0
value: quay.io/konveyor/kubevirt-velero-plugin:v0.6.2
- name: RELATED_IMAGE_MUSTGATHER
value: registry.redhat.io/oadp/oadp-mustgather-rhel8:v1.2
image: quay.io/konveyor/oadp-operator:oadp-1.3
Expand Down Expand Up @@ -1008,7 +1008,7 @@ spec:
name: velero-plugin-for-gcp
- image: quay.io/konveyor/velero-plugin-for-csi:oadp-1.3
name: velero-plugin-for-csi
- image: quay.io/konveyor/kubevirt-velero-plugin:v0.2.0
- image: quay.io/konveyor/kubevirt-velero-plugin:v0.6.2
name: kubevirt-velero-plugin
- image: registry.redhat.io/oadp/oadp-mustgather-rhel8:v1.2
name: mustgather
Expand Down
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
- name: RELATED_IMAGE_VELERO_PLUGIN_FOR_CSI
value: quay.io/konveyor/velero-plugin-for-csi:oadp-1.3
- name: RELATED_IMAGE_KUBEVIRT_VELERO_PLUGIN
value: quay.io/konveyor/kubevirt-velero-plugin:v0.2.0
value: quay.io/konveyor/kubevirt-velero-plugin:v0.6.2
- name: RELATED_IMAGE_MUSTGATHER
value: registry.redhat.io/oadp/oadp-mustgather-rhel8:v1.2
args:
Expand Down
2 changes: 1 addition & 1 deletion pkg/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const (
GCPPluginImage = "quay.io/konveyor/velero-plugin-for-gcp:latest"
CSIPluginImage = "quay.io/konveyor/velero-plugin-for-csi:latest"
RegistryImage = "quay.io/konveyor/registry:latest"
KubeVirtPluginImage = "quay.io/konveyor/kubevirt-velero-plugin:v0.2.0"
KubeVirtPluginImage = "quay.io/konveyor/kubevirt-velero-plugin:v0.6.2"
)

// Plugin names
Expand Down
2 changes: 1 addition & 1 deletion pkg/credentials/credentials_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ func TestCredentials_getPluginImage(t *testing.T) {
},
},
pluginName: common.KubeVirtPlugin,
wantImage: "quay.io/konveyor/kubevirt-velero-plugin:v0.2.0",
wantImage: "quay.io/konveyor/kubevirt-velero-plugin:v0.6.2",
},
{
name: "given default Velero CR with env var set, image should be built via env vars",
Expand Down