diff --git a/charts/backstage/ci/with-custom-image-for-test-pod-values.yaml b/charts/backstage/ci/with-custom-image-for-test-pod-values.yaml new file mode 100644 index 0000000..121bb21 --- /dev/null +++ b/charts/backstage/ci/with-custom-image-for-test-pod-values.yaml @@ -0,0 +1,14 @@ +# Workaround for kind cluster in CI which has no Routes and no PVCs +route: + enabled: false +upstream: + postgresql: + primary: + persistence: + enabled: false + +test: + image: + registry: quay.io + repository: curl/curl-base + tag: 8.11.1 diff --git a/charts/backstage/ci/with-test-pod-disabled-values.yaml b/charts/backstage/ci/with-test-pod-disabled-values.yaml new file mode 100644 index 0000000..4a4257c --- /dev/null +++ b/charts/backstage/ci/with-test-pod-disabled-values.yaml @@ -0,0 +1,11 @@ +# Workaround for kind cluster in CI which has no Routes and no PVCs +route: + enabled: false +upstream: + postgresql: + primary: + persistence: + enabled: false + +test: + enabled: false