Skip to content

Commit 63ddc3b

Browse files
authored
fix: Helm templates has new needed values and other changes. (#1849)
1 parent 65aa363 commit 63ddc3b

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

website/docs/introduction/helm/index.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,19 +191,31 @@ drwxr-xr-x 3 user user 96 Nov 15 10:30 templates
191191
Let's modify the default values to deploy our catalog service. Update the `values.yaml` file:
192192

193193
```bash
194-
$ cat > retail-catalog/values.yaml << 'EOF'
194+
$ cat > retail-catalog/values.yaml <<EOF
195195
replicaCount: 2
196196
197197
image:
198198
repository: public.ecr.aws/aws-containers/retail-store-sample-catalog
199199
tag: "0.4.0"
200200
pullPolicy: IfNotPresent
201201
202+
serviceAccount:
203+
create: true
204+
202205
service:
203206
type: ClusterIP
204207
port: 80
205208
targetPort: 8080
206209
210+
ingress:
211+
enabled: false
212+
213+
httpRoute:
214+
enabled: false
215+
216+
autoscaling:
217+
enabled: false
218+
207219
resources:
208220
requests:
209221
cpu: 128m
@@ -219,6 +231,12 @@ EOF
219231

220232
### Installing the Chart
221233

234+
First, let's remove the existing catalog deployment that was installed with Kustomize:
235+
236+
```bash
237+
$ kubectl delete namespace catalog
238+
```
239+
222240
Now let's install our catalog service using the Helm chart:
223241

224242
```bash

0 commit comments

Comments
 (0)