Skip to content

Commit

Permalink
fix: use lower case ci
Browse files Browse the repository at this point in the history
  • Loading branch information
npitsillos committed Nov 14, 2023
1 parent 73bd8aa commit 876d567
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/operator-manual-deploy-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,11 @@ jobs:
yq -i ".operator.image.sha=\"${{needs.build-operator.outputs.sha}}\"" .github/ci/${{ github.event.inputs.environment }}-values.yaml
cat .github/ci/${{ github.event.inputs.environment }}-values.yaml
- name: helm deploy
if: ${{ github.event.inputs.env == 'CI' }}
if: ${{ github.event.inputs.env == 'ci' }}
shell: bash
run: |
cd $GITHUB_WORKSPACE
if [[ ${{ github.event.inputs.env }} == 'CI' ]]; then
if [[ ${{ github.event.inputs.env }} == 'ci' ]]; then
kubectl create ns jcloud || true
kubectl delete secret regcred -n jcloud || true
echo "$WOLF_DOCKER_AUTH" > config.json
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
--set "apimanager.ingress.tls[0].secretName=ci-wolf-tls" \
--set "apimanager.ingress.tls[0].hosts[0]=*.ci.wolf.jina.ai" \
--set-file "operator.trustCA.ci\.crt=ci.crt" \
-f .github/ci/CI-values.yaml \
-f .github/ci/ci-values.yaml \
-n jcloud
kubectl set env deploy/deployment-jcloud-operator -n jcloud MONGO_URI="${{ env.MONGO_URI }}"
Expand Down

0 comments on commit 876d567

Please sign in to comment.