Last active
July 24, 2020 06:06
-
-
Save raghur/bdaa747f9f083cd2e78a4a6f61af8468 to your computer and use it in GitHub Desktop.
eventstore helm values
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
clusterSize: 3 | |
imageTag: release-5.0.8 | |
persistence: | |
enabled: true | |
size: 2Gi | |
storageClass: managed-premium | |
# keep in mind that if you update the release name from 'eventstore', then update the match expression below as well | |
# placement constraint for production like env | |
affinity: | |
podAntiAffinity: | |
# changing to required below makes the thing not work inexplicably (1.15.7 :? :-|) | |
preferredDuringSchedulingIgnoredDuringExecution: | |
- weight: 100 | |
podAffinityTerm: | |
labelSelector: | |
matchExpressions: | |
- key: app.kubernetes.io/name | |
operator: In | |
values: | |
- eventstore | |
topologyKey: kubernetes.io/hostname | |
podAnnotations: {} | |
nodeSelector: {} | |
tolerations: [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment