Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

localstack: statefulset instead of deployment #9

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ entries:
- https://everpeace.github.io/helm-charts/kafka-throttlable-perf-consumer-0.1.0.tgz
version: 0.1.0
localstack:
- apiVersion: v1
created: 2019-07-05T15:30:40.557836234+02:00
description: A Helm chart for localstack
digest: 0095d5b9af93417a5fbf480dc9a5f3e3e2af87212d5b38c248b5a7760a3b5dda
name: localstack
urls:
- https://everpeace.github.io/helm-charts/localstack-0.5.0.tgz
version: 0.5.0
- apiVersion: v1
created: 2019-06-18T11:47:35.27767+02:00
description: A Helm chart for localstack
Expand All @@ -77,4 +85,4 @@ entries:
urls:
- https://everpeace.github.io/helm-charts/localstack-0.1.0.tgz
version: 0.1.0
generated: 2019-06-18T11:47:35.274468+02:00
generated: 2019-07-05T15:30:40.554169517+02:00
Binary file added docs/localstack-0.5.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion localstack/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: A Helm chart for localstack
name: localstack
version: 0.4.0
version: 0.5.0
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: extensions/v1beta1
kind: Deployment
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: {{ template "fullname" . }}
labels:
Expand All @@ -8,6 +8,10 @@ metadata:
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
selector:
matchLabels:
app: {{ template "name" . }}
release: {{ .Release.Name }}
template:
metadata:
labels:
Expand Down