Skip to content

Commit

Permalink
ci(deploy): disable deploy until it fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tdakkota committed Jun 13, 2024
1 parent 1433b63 commit 11e62f4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ env:
REGISTRY: ghcr.io
IMAGE_TAG: ghcr.io/${{ github.repository }}
KUBECTL_VERSION: v1.27.6
DEPLOY_BROKEN: true

jobs:
oteldb:
Expand Down Expand Up @@ -135,10 +136,12 @@ jobs:
id: install

- name: Deploy
if: ${{ env.DEPLOY_BROKEN != 'true' }}
run: |
/tmp/kubectl apply -f .k8s/deployment.deploy.yml
/tmp/kubectl -n faster rollout status deployment otelproxy chotel --timeout=5m
- name: Deploy (Helm)
if: ${{ env.DEPLOY_BROKEN != 'true' }}
run: |
helm upgrade --timeout 5m --wait --install otel ./helm/oteldb --namespace faster --values .k8s/values.yml --set image.tag=${{ env.sha }}
Expand Down Expand Up @@ -251,6 +254,7 @@ jobs:
id: install

- name: Deploy (Helm)
if: ${{ env.DEPLOY_BROKEN != 'true' }}
run: |
helm upgrade --timeout 5m --wait --install bot ./helm/otelbot --namespace faster --values .k8s/otelbot.values.yml --set image.tag=${{ env.sha }}
Expand Down Expand Up @@ -303,6 +307,7 @@ jobs:
run: .k8s/kubeconfig.sh

- name: Deploy
if: ${{ env.DEPLOY_BROKEN != 'true' }}
run: |
/tmp/kubectl -n monitoring apply -f .k8s/otel.yml
/tmp/kubectl -n monitoring rollout status --timeout=2m deployment otel-collector
Expand Down

0 comments on commit 11e62f4

Please sign in to comment.