You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data/part-4/3-GitOps.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -277,14 +277,14 @@ spec:
277
277
```
278
278
279
279
280
-
The **base/kustomize.yaml** is simple:
280
+
The **base/kustomization.yaml** is simple:
281
281
282
282
```yaml
283
283
resources:
284
284
- deployment.yaml
285
285
```
286
286
287
-
The production environment refines the base by changing the replica count to 3. **overlays/prod/kustomize.yaml** looks like this:
287
+
The production environment refines the base by changing the replica count to 3. The **overlays/prod/deployment.yaml** looks like this:
288
288
289
289
```yaml
290
290
apiVersion: apps/v1
@@ -297,7 +297,7 @@ spec:
297
297
298
298
So only parts that are different are defined.
299
299
300
-
The **overlays/prod/kustomize.yaml** looks like following:
300
+
The **overlays/prod/kustomization.yaml** looks like following:
301
301
302
302
```yaml
303
303
resources:
@@ -314,7 +314,7 @@ images:
314
314
315
315
So it refers to the base and [patches](https://kubectl.docs.kubernetes.io/references/kustomize/kustomization/patches/) that with the above deployment that sets the number of replicas to 3.
316
316
317
-
The **overlays/staging/kustomize.yaml** just sets the image:
317
+
The **overlays/staging/kustomization.yaml** just sets the image:
0 commit comments