Skip to content

Commit aef55bb

Browse files
authored
Merge pull request #8 from ameier38/feature/single-node-cluster
feature/single-node-cluster: fix service for single node cluster
2 parents eb88b3e + c785b90 commit aef55bb

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

charts/eventstore/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v1
22
description: A Helm chart for Kubernetes EventStore.
33
name: eventstore
44
home: https://eventstore.org/
5-
version: 0.1.1
6-
appVersion: 5.0.8
5+
version: 0.1.2
6+
appVersion: 5.0.9
77
keywords:
88
- eventstore
99
sources:

charts/eventstore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 | `[]` |

charts/eventstore/templates/eventstore-service.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ spec:
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

charts/eventstore/values.yaml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
image: 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

127124
nodeSelector: {}
128125

0 commit comments

Comments
 (0)