Skip to content

Commit

Permalink
Disable production cluster for now saving Azure resources
Browse files Browse the repository at this point in the history
  • Loading branch information
tjementum committed Nov 25, 2023
1 parent 7a1b46d commit 7798cba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_deploy-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
production-west-europe-deploy:
name: Production
if: github.ref == 'refs/heads/main'
if: false && github.ref == 'refs/heads/main' ## Disable production for now
needs: staging-west-europe-deploy
runs-on: ubuntu-latest
environment: "production" ## Force a manual approval
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cloud-infrastructure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,11 @@ jobs:
run: bash ./cloud-infrastructure/cluster/config/staging-west-europe.sh --plan

- name: Plan Changes to Shared Production Environment Resources
if: false ## Disable production for now
run: bash ./cloud-infrastructure/environment/config/production.sh --plan

- name: Plan Changes to Production West Europe Cluster
if: false ## Disable production for now
env:
ACTIVE_DIRECTORY_SQL_ADMIN_OBJECT_ID: ${{ secrets.ACTIVE_DIRECTORY_SQL_ADMIN_OBJECT_ID }}
CONTAINER_REGISTRY_NAME: ${{ vars.CONTAINER_REGISTRY_NAME }}
Expand Down Expand Up @@ -159,7 +161,7 @@ jobs:
production:
name: Production
if: github.ref == 'refs/heads/main'
if: false && github.ref == 'refs/heads/main' ## Disable production for now
needs: staging
runs-on: ubuntu-latest
environment: "production" ## Force a manual approval
Expand Down

0 comments on commit 7798cba

Please sign in to comment.