refactor: set default replicas to 1 for secondary storage (#4150) #1108
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Chart - Release - Snapshot" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/chart-release-snapshot.yaml | |
| - charts/camunda-platform-8.7/** | |
| - charts/camunda-platform-8.8/** | |
| jobs: | |
| release: | |
| name: Release Snapshot | |
| uses: ./.github/workflows/chart-release-template.yaml | |
| with: | |
| branch: ${{ github.ref_name }} | |
| workflow-ref: chart-release-template.yaml | |
| chart-matrix: | | |
| [ | |
| { | |
| "name": "Helm Chart rolling - Latest", | |
| "directory": "charts/camunda-platform-8.7", | |
| "versionSuffix": "snapshot-latest", | |
| "override": true | |
| }, | |
| { | |
| "name": "Helm Chart rolling - Alpha", | |
| "directory": "charts/camunda-platform-8.8", | |
| "versionSuffix": "snapshot-alpha", | |
| "override": true | |
| } | |
| ] |