Skip to content

Commit 013ff21

Browse files
authored
Merge pull request #162 from maxmynter/master
Fix file `yaml` references in chapter 4.3
2 parents 85ff6c5 + ec1ef21 commit 013ff21

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

data/part-4/3-GitOps.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -277,14 +277,14 @@ spec:
277277
```
278278
279279
280-
The **base/kustomize.yaml** is simple:
280+
The **base/kustomization.yaml** is simple:
281281
282282
```yaml
283283
resources:
284284
- deployment.yaml
285285
```
286286
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:
288288
289289
```yaml
290290
apiVersion: apps/v1
@@ -297,7 +297,7 @@ spec:
297297
298298
So only parts that are different are defined.
299299
300-
The **overlays/prod/kustomize.yaml** looks like following:
300+
The **overlays/prod/kustomization.yaml** looks like following:
301301
302302
```yaml
303303
resources:
@@ -314,7 +314,7 @@ images:
314314
315315
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.
316316
317-
The **overlays/staging/kustomize.yaml** just sets the image:
317+
The **overlays/staging/kustomization.yaml** just sets the image:
318318
319319
```yaml
320320
resources:

0 commit comments

Comments
 (0)