Skip to content

Commit

Permalink
Merge pull request #76 from kakkoyun/revert_hide_volume
Browse files Browse the repository at this point in the history
Enable statefulSets volumes to be specified at downstream, revert #63
  • Loading branch information
metalmatze authored Dec 16, 2019
2 parents 9bd3133 + 3ba4662 commit 3c0a850
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions examples/all/manifests/thanos-receive-statefulSet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ spec:
name: thanos-receive-data
readOnly: false
terminationGracePeriodSeconds: 120
volumes: null
volumeClaimTemplates:
- metadata:
name: thanos-receive-data
Expand Down
1 change: 1 addition & 0 deletions examples/all/manifests/thanos-store-statefulSet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ spec:
name: thanos-store-data
readOnly: false
terminationGracePeriodSeconds: 120
volumes: null
volumeClaimTemplates:
- metadata:
name: thanos-store-data
Expand Down
2 changes: 1 addition & 1 deletion jsonnet/kube-thanos/kube-thanos-receive-pvc.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ local k = import 'ksonnet/ksonnet.beta.4/k.libsonnet';
spec+: {
template+: {
spec+: {
volumes:: null,
volumes: null,
},
},
volumeClaimTemplates::: [
Expand Down
2 changes: 1 addition & 1 deletion jsonnet/kube-thanos/kube-thanos-store-pvc.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ local k = import 'ksonnet/ksonnet.beta.4/k.libsonnet';
spec+: {
template+: {
spec+: {
volumes:: null,
volumes: null,
},
},
volumeClaimTemplates::: [
Expand Down

0 comments on commit 3c0a850

Please sign in to comment.