Skip to content

Commit

Permalink
Addresses review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
guineveresaenger committed Jun 11, 2018
1 parent 5a3c655 commit 4e7610a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions examples/helloWorld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,11 @@ sed -i 's/app: hello/app: my-hello/' \
$BASE/kustomization.yaml
```
*Note* `sed` works differently on different systems. On MacOS, for example, use this command instead:
On a Mac, use:
```
sed -i '' 's/pineapple/kiwi/' $OVERLAYS/staging/map.yaml
sed -i '' $pattern $file
```
to get in-place editing.
See the effect:
<!-- @checkLabel @test -->
Expand Down Expand Up @@ -418,7 +419,8 @@ uses the map:
<!-- @countHashes @test -->
```
test 3 == \
$(kustomize build $OVERLAYS/staging | grep khk45ktkd9 | wc -l); echo $?
$(kustomize build $OVERLAYS/staging | grep khk45ktkd9 | wc -l); \
echo $?
```
Applying these resources to the cluster will result in
Expand Down

0 comments on commit 4e7610a

Please sign in to comment.