We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ce0b2c commit 130e003Copy full SHA for 130e003
.github/workflows/e2e_tests.yaml
@@ -24,6 +24,9 @@ concurrency:
24
group: ${{ github.head_ref }}-${{ github.workflow }}
25
cancel-in-progress: true
26
27
+env:
28
+ CODEFLARE_OPERATOR_IMG: "quay.io/project-codeflare/codeflare-operator:dev"
29
+
30
jobs:
31
kubernetes:
32
@@ -92,9 +95,7 @@ jobs:
92
95
echo Setting up CodeFlare stack
93
96
make setup-e2e
94
97
echo Deploying CodeFlare operator
- IMG="${REGISTRY_ADDRESS}"/codeflare-operator
- make image-push -e IMG="${IMG}"
- make deploy -e IMG="${IMG}" -e ENV="e2e"
98
+ make deploy -e IMG="${CODEFLARE_OPERATOR_IMG}" -e ENV="e2e"
99
kubectl wait --timeout=120s --for=condition=Available=true deployment -n openshift-operators codeflare-operator-manager
100
cd ..
101
0 commit comments