Merge pull request #1544 from cisagov/ab/zero-down-deployment

Issue 1430 zero downtime on deployment of production
This commit is contained in:
Alysia Broddrick 2023-12-28 17:45:06 -08:00 committed by GitHub
commit f27e4ab0b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -37,4 +37,4 @@ jobs:
cf_password: ${{ secrets.CF_DEVELOPMENT_PASSWORD }}
cf_org: cisa-dotgov
cf_space: development
push_arguments: "-f ops/manifests/manifest-development.yaml"
push_arguments: "-f ops/manifests/manifest-development.yaml --strategy rolling"

View file

@ -36,4 +36,4 @@ jobs:
cf_password: ${{ secrets.CF_STABLE_PASSWORD }}
cf_org: cisa-dotgov
cf_space: stable
cf_manifest: "ops/manifests/manifest-stable.yaml"
cf_manifest: "ops/manifests/manifest-stable.yaml --strategy rolling"

View file

@ -36,4 +36,4 @@ jobs:
cf_password: ${{ secrets.CF_STAGING_PASSWORD }}
cf_org: cisa-dotgov
cf_space: staging
cf_manifest: "ops/manifests/manifest-staging.yaml"
cf_manifest: "ops/manifests/manifest-staging.yaml --strategy rolling"