forked from janus-idp/helm-backstage
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Make the dynamic plugins root PVC storage class configurable [RH…
…DHBUGS-156][RHIDP-5573] (#69) * Extract the dynamic plugins root PVC spec in a `dynamicPlugins.cache.volumeClaimSpec` field in the values file This way, the whole PVC spec is configurable, including the storage class name, along with other things like the PVC size and access modes. * Bump the Chart version * Extract the PostgreSQL PVC storageClass field to highlight that this configurable as well See https://github.com/bitnami/charts/blob/postgresql/12.10.0/bitnami/postgresql/README.md#postgresql-primary-parameters * Add test values file * Regenerate README
- Loading branch information
Showing
6 changed files
with
61 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
18 changes: 18 additions & 0 deletions
18
charts/backstage/ci/with-custom-dynamic-pvc-claim-spec-values.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Workaround for kind cluster in CI which has no Routes | ||
route: | ||
enabled: false | ||
upstream: | ||
postgresql: | ||
primary: | ||
persistence: | ||
# This custom-sc storage class is created in the test GH Workflow | ||
storageClass: custom-sc | ||
|
||
dynamicPlugins: | ||
cache: | ||
volumeClaimSpec: | ||
resources: | ||
requests: | ||
storage: 3Gi | ||
# This custom-sc storage class is created in the test GH Workflow | ||
storageClassName: custom-sc |
This file contains 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
This file contains 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