-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhelmfile.localstack.yaml
188 lines (184 loc) · 5.32 KB
/
helmfile.localstack.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
---
bases:
- ../config/environments.yaml
- ../config/helmdefaults.yaml
- ../config/repositories.yaml
---
releases:
- name: localstack-namespace
chart: {{ .Values | getOrNil "archetype.chart" | default "zloeber/archetype" }}
version: {{ .Values | getOrNil "archetype.version" | default "0.0.8" }}
namespace: kube-system
condition: localstack.enabled
installed: true
wait: true
labels:
chart: localstack-namespace
component: localstack
namespace: kube-system
values:
- app: localstack
namespace:
enabled: true
name: {{ .Values.localstack.namespace }}
- name: localstack
chart: {{ .Values | getOrNil "raw.chart" | default "incubator/raw" }}
namespace: {{ .Values.localstack.namespace }}
version: {{ .Values | getOrNil "raw.version" | default "0.2.3" }}
condition: localstack.enabled
installed: true
labels:
chart: localstack
component: localstack
namespace: {{ .Values.localstack.namespace }}
needs:
- kube-system/localstack-namespace
values:
- resources:
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: localstack-claim0
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: localstack-claim1
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
- apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
name: localstack
labels:
io.kompose.service: localstack
spec:
ports:
- name: "4566"
port: 4566
targetPort: 4566
- name: "8080"
port: 8080
targetPort: 8080
selector:
io.kompose.service: localstack
- apiVersion: apps/v1
kind: Deployment
metadata:
name: localstack
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: localstack
strategy:
type: Recreate
template:
metadata:
labels:
io.kompose.service: localstack
spec:
containers:
- env:
- name: DATA_DIR
value: ' '
- name: DEBUG
value: ' '
- name: DOCKER_HOST
value: unix:///var/run/docker.sock
- name: HOST_TMP_FOLDER
- name: KINESIS_ERROR_PROBABILITY
value: ' '
- name: LAMBDA_EXECUTOR
value: ' '
- name: PORT_WEB_UI
value: ' '
- name: SERVICES
value: ' '
image: localstack/localstack
imagePullPolicy: ""
name: localstack-main
ports:
- containerPort: 4566
- containerPort: 8080
resources: {}
volumeMounts:
- mountPath: /tmp/localstack
name: localstack-claim0
- mountPath: /var/run/docker.sock
name: localstack-claim1
restartPolicy: Always
serviceAccountName: ""
volumes:
- name: localstack-claim0
persistentVolumeClaim:
claimName: localstack-claim0
- name: localstack-claim1
persistentVolumeClaim:
claimName: localstack-claim1
- name: localstack-ingress-dashboard
namespace: {{ .Values.localstack.namespace }}
chart: {{ .Values | getOrNil "archetype.chart" | default "zloeber/archetype" }}
version: {{ .Values | getOrNil "archetype.version" | default "0.0.8" }}
condition: ingress.enabled
installed: true
needs:
- kube-system/localstack-namespace
labels:
chart: localstack-ingress-dashboard
component: ingress
namespace: {{ .Values.localstack.namespace }}
values:
- zone: internal
app: localstack
ingressClassMap:
internal: {{ .Values | getOrNil "ingress.internal.class" | default "internal" }}
ingress:
enabled: true
tlsEnabled: true
hosts:
- name: localstack-dashboard.{{ .Values | getOrNil "ingress.internal.zone" | default "int.micro.svc" }}
secretName: ingress-localstack-dashboard
paths:
- path: "/"
backend:
serviceName: localstack
servicePort: 8080
- name: localstack-ingress-api
namespace: {{ .Values.localstack.namespace }}
chart: {{ .Values | getOrNil "archetype.chart" | default "zloeber/archetype" }}
version: {{ .Values | getOrNil "archetype.version" | default "0.0.8" }}
condition: ingress.enabled
installed: true
needs:
- kube-system/localstack-namespace
labels:
chart: localstack-ingress-api
component: ingress
namespace: {{ .Values.localstack.namespace }}
values:
- zone: internal
app: localstack
ingressClassMap:
internal: {{ .Values | getOrNil "ingress.internal.class" | default "internal" }}
ingress:
enabled: true
tlsEnabled: true
hosts:
- name: localstack.{{ .Values | getOrNil "ingress.internal.zone" | default "int.micro.svc" }}
secretName: ingress-localstack-api
paths:
- path: "/"
backend:
serviceName: localstack
servicePort: 4566