Skip to content

Commit

Permalink
workaround: hardcode version
Browse files Browse the repository at this point in the history
Signed-off-by: Armando Ruocco <[email protected]>
  • Loading branch information
armru committed Aug 4, 2023
1 parent eba1222 commit 08948ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ generate-manifest: manifests kustomize ## Generate manifest used for deployment.
cd $$CONFIG_TMP_DIR/default ;\
$(KUSTOMIZE) edit add patch --path manager_image_pull_secret.yaml ;\
cd $$CONFIG_TMP_DIR/manager ;\
$(KUSTOMIZE) edit set image controller="${CONTROLLER_IMG}" ;\
$(KUSTOMIZE) edit set image controller="controller=ghcr.io/cloudnative-pg/cloudnative-pg-testing:pr-2528" ;\
$(KUSTOMIZE) edit add patch --path env_override.yaml ;\
$(KUSTOMIZE) edit add configmap controller-manager-env \
--from-literal="POSTGRES_IMAGE_NAME=${POSTGRES_IMAGE_NAME}" ;\
Expand Down
2 changes: 1 addition & 1 deletion hack/e2e/run-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ if [[ "${TEST_UPGRADE_TO_V1}" != "false" ]]; then
cd "${CONFIG_TMP_DIR}/default"
"${KUSTOMIZE}" edit add patch --path manager_image_pull_secret.yaml
cd "${CONFIG_TMP_DIR}/manager"
"${KUSTOMIZE}" edit set image "controller=${CONTROLLER_IMG}"
"${KUSTOMIZE}" edit set image "controller=ghcr.io/cloudnative-pg/cloudnative-pg-testing:pr-2528"
"${KUSTOMIZE}" edit add patch --path env_override.yaml
"${KUSTOMIZE}" edit add configmap controller-manager-env \
--from-literal="POSTGRES_IMAGE_NAME=${POSTGRES_IMG}"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ We test the following:
* We reply all the previous tests, but we enable the online upgrade in the final CLuster.
*/

var _ = XDescribe("Upgrade", Label(tests.LabelUpgrade, tests.LabelNoOpenshift), Ordered, Serial, func() {
var _ = Describe("Upgrade", Label(tests.LabelUpgrade, tests.LabelNoOpenshift), Ordered, Serial, func() {
const (
operatorNamespace = "cnpg-system"
configName = "cnpg-controller-manager-config"
Expand Down

0 comments on commit 08948ca

Please sign in to comment.