generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a new StorageClass and configured thanos-stack to use the per… (
#301) * Created a new StorageClass and configured thanos-stack to use the persistent storage * Commit changes made by code formatters --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ed46ff9
commit bf03b99
Showing
4 changed files
with
24 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ terraform.tfstate | |
|
||
#tmp kube config written by tooling container | ||
.kube_config | ||
.env.tmp |
15 changes: 15 additions & 0 deletions
15
k8s-helm-charts/shared-resources/templates/gp3-expandable-storageclass.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,15 @@ | ||
apiVersion: storage.k8s.io/v1 | ||
kind: StorageClass | ||
metadata: | ||
name: gp3-expandable | ||
annotations: | ||
meta.helm.sh/release-name: shared-resources | ||
meta.helm.sh/release-namespace: kube-system | ||
storageclass.kubernetes.io/is-default-class: "true" | ||
labels: | ||
app.kubernetes.io/managed-by: Helm | ||
provisioner: ebs.csi.aws.com | ||
allowVolumeExpansion: true | ||
volumeBindingMode: WaitForFirstConsumer | ||
parameters: | ||
type: gp3 |
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