Compare commits

..

1 Commits

Author SHA1 Message Date
Vaibhav Bhembre
cd0181471c
Merge 658321a246 into e973d8ea49 2026-04-10 16:07:56 -04:00
2 changed files with 1 additions and 4 deletions

View File

@ -9,7 +9,6 @@ resources:
- service.yaml - service.yaml
- ../config/crd - ../config/crd
- ../config/rbac - ../config/rbac
# If you change newName, update the e2e overlay in test/e2e/e2e_suite_test.go too.
images: images:
- name: plugin-barman-cloud - name: plugin-barman-cloud
newName: ghcr.io/cloudnative-pg/plugin-barman-cloud-testing newName: ghcr.io/cloudnative-pg/plugin-barman-cloud-testing

View File

@ -57,11 +57,9 @@ var _ = SynchronizedBeforeSuite(func(ctx SpecContext) []byte {
const barmanCloudKustomizationPath = "./kustomize/kubernetes/" const barmanCloudKustomizationPath = "./kustomize/kubernetes/"
barmanCloudKustomization := &kustomizeTypes.Kustomization{ barmanCloudKustomization := &kustomizeTypes.Kustomization{
Resources: []string{barmanCloudKustomizationPath}, Resources: []string{barmanCloudKustomizationPath},
// Override the image from the base kustomization (kubernetes/kustomization.yaml)
// with the locally-built one. The Name must match the newName in the base.
Images: []kustomizeTypes.Image{ Images: []kustomizeTypes.Image{
{ {
Name: "ghcr.io/cloudnative-pg/plugin-barman-cloud-testing", Name: "docker.io/library/plugin-barman-cloud",
NewName: "registry.barman-cloud-plugin:5000/plugin-barman-cloud", NewName: "registry.barman-cloud-plugin:5000/plugin-barman-cloud",
NewTag: "testing", NewTag: "testing",
}, },