File tree Expand file tree Collapse file tree
website/docs/introduction/helm Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -191,19 +191,31 @@ drwxr-xr-x 3 user user 96 Nov 15 10:30 templates
191191Let'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
195195replicaCount: 2
196196
197197image:
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+
202205service:
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+
207219resources:
208220 requests:
209221 cpu: 128m
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+
222240Now let's install our catalog service using the Helm chart:
223241
224242``` bash
You can’t perform that action at this time.
0 commit comments