mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-07-06 17:52:21 +02:00
Some checks failed
release-please / release-please (push) Failing after 3s
The e2e kustomize overlay tried to match
`docker.io/library/plugin-barman-cloud` but the base kustomization at
`kubernetes/kustomization.yaml` already transforms the bare
`plugin-barman-cloud` image to the GHCR name. The overlay must match
the base's output (`ghcr.io/cloudnative-pg/plugin-barman-cloud-testing`)
to override it.
Broken since b7daaac (#89) changed the base kustomization's newName
from `docker.io/library/plugin-barman-cloud` to the GHCR image without
updating the e2e overlay.
Closes #840
Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
21 lines
577 B
YAML
21 lines
577 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: cnpg-system
|
|
resources:
|
|
- certificate-issuer.yaml
|
|
- client-certificate.yaml
|
|
- deployment.yaml
|
|
- server-certificate.yaml
|
|
- service.yaml
|
|
- ../config/crd
|
|
- ../config/rbac
|
|
# If you change newName, update the e2e overlay in test/e2e/e2e_suite_test.go too.
|
|
images:
|
|
- name: plugin-barman-cloud
|
|
newName: ghcr.io/cloudnative-pg/plugin-barman-cloud-testing
|
|
newTag: main
|
|
secretGenerator:
|
|
- literals:
|
|
- SIDECAR_IMAGE=ghcr.io/cloudnative-pg/plugin-barman-cloud-sidecar-testing:main
|
|
name: plugin-barman-cloud
|