File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -149,8 +149,13 @@ jobs:
149149 kind load docker-image "${IPFS_CLUSTER_K8S_IMAGE}:ci-build"
150150
151151 - name : Load the Operator into Kind
152- # don't build new images to reuse existing artifacts, use ci-build tag
153- run : KIND_TAG="ci-build" ./hack/run-in-kind.sh --skip-build --skip-tag
152+ run : |
153+ helm upgrade --install \
154+ --debug \
155+ --set image.tag="ci-build" \
156+ --set ipfsCluster.tag="ci-build" \
157+ --wait --timeout=300s \
158+ ipfs-cluster ./helm/ipfs-operator
154159
155160 - name : run e2e tests
156161 run : |
@@ -188,7 +193,7 @@ jobs:
188193 (github.event_name == 'push' || github.event_name == 'schedule') &&
189194 github.ref == 'refs/heads/main'
190195 run : |
191- docker tag ${OPERATOR_IMAGE}:ci-build ${OPERATOR_IMAGE}:${TAG}
196+ docker tag ${OPERATOR_IMAGE} ${OPERATOR_IMAGE}:${TAG}
192197 docker push "${OPERATOR_IMAGE}:${TAG}"
193198
194199 push-bundle :
You can’t perform that action at this time.
0 commit comments