'imagetag' -> 'image' in edit set command examples

'imagetag' is not/no longer supported as a command

Kubernetes-commit: 5a753a834f350d62c2258adfd9983614c8072e88
This commit is contained in:
Andrew Phillips 2019-09-10 10:53:27 -04:00 committed by Kubernetes Publisher
parent 985e123003
commit 4246a74149
1 changed files with 2 additions and 2 deletions

View File

@ -169,13 +169,13 @@ then the container image would be `foo:1bb359ccce344ca5d263cd257958ea035c978fd3`
A simple way to push an image that was just built without manually updating the image tags is to
download the [kustomize standalone](https://github.com/kubernetes-sigs/kustomize/) tool and run
`kustomize edit set imagetag` command to update the tags for you.
`kustomize edit set image` command to update the tags for you.
**Example:** Set the latest git commit SHA as the image tag for `foo` images.
{% sample lang="yaml" %}
```bash
kustomize edit set imagetag foo:$(git log -n 1 --pretty=format:"%H")
kustomize edit set image foo:$(git log -n 1 --pretty=format:"%H")
kubectl apply -f .
```
{% endmethod %}