File tree Expand file tree Collapse file tree 4 files changed +15
-14
lines changed
Expand file tree Collapse file tree 4 files changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v1
22description : A Helm chart for Kubernetes EventStore.
33name : eventstore
44home : https://eventstore.org/
5- version : 0.1.1
6- appVersion : 5.0.8
5+ version : 0.1.2
6+ appVersion : 5.0.9
77keywords :
88 - eventstore
99sources :
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ The following table lists the configurable parameters of the Event Store chart a
8888| ` persistence.size ` | Size of data volume | ` 8Gi ` |
8989| ` persistence.mountPath ` | Mount path of data volume | ` /var/lib/eventstore ` |
9090| ` persistence.annotations ` | Annotations for PVC | ` {} ` |
91- | ` resources ` | CPU/Memory resource request/limits | Memory: ` 256Mi ` , CPU: ` 100m ` |
91+ | ` resources ` | CPU/Memory resource request/limits | Memory: ` 500Mi ` , CPU: ` 250m ` |
9292| ` nodeSelector ` | Node labels for pod assignment | ` {} ` |
9393| ` podAnnotations ` | Pod annotations | ` {} ` |
9494| ` tolerations ` | Toleration labels for pod assignment | ` [] ` |
Original file line number Diff line number Diff line change 1313 selector :
1414 app.kubernetes.io/name : {{ include "eventstore.name" . }}
1515 app.kubernetes.io/instance : {{ .Release.Name }}
16+ # We want all pods in the StatefulSet to have their addresses published for
17+ # the sake of the other EventStore pods even before they're ready, since they
18+ # have to be able to talk to each other in order to become ready.
19+ publishNotReadyAddresses : true
1620 ports :
1721 - name : ext-tcp-port
1822 protocol : TCP
Original file line number Diff line number Diff line change 66image : eventstore/eventstore
77# #
88# # Event Store image tag
9- imageTag : release-5.0.8
9+ imageTag : release-5.0.9
1010# #
1111# # Specify a imagePullPolicy
1212# # Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
@@ -113,16 +113,13 @@ persistence:
113113 mountPath : /var/lib/eventstore
114114 annotations : {}
115115
116- resources : {}
117- # # If you want to specify resources, uncomment the following
118- # # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
119- # #
120- # limits:
121- # cpu: 100m
122- # memory: 128Mi
123- # requests:
124- # cpu: 100m
125- # memory: 128Mi
116+ resources :
117+ requests :
118+ cpu : 250m
119+ memory : 500Mi
120+ limits :
121+ cpu : 500m
122+ memory : 1Gi
126123
127124nodeSelector : {}
128125
You can’t perform that action at this time.
0 commit comments