1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00

Add example to update image tag.

This commit is contained in:
shuting 2019-06-10 18:37:13 -07:00
parent f087be8c66
commit f35e37bfb9

View file

@ -79,8 +79,16 @@ Kyverno uses secrets created above to setup TLS communication with the kube-apis
### 3. Install Kyverno
To install a specific version, change the image tag with git tag in `install.yaml` -- e.g., v0.X.0.
To install a specific version, change the image tag with git tag in `install.yaml`.
e.g., change image tag from `latest` to the specific tag `v0.3.0`.
>>>
spec:
containers:
- name: kyverno
# image: nirmata/kyverno:latest
image: nirmata/kyverno:v0.3.0
````sh
kubectl create -f https://github.com/nirmata/kyverno/raw/master/definitions/install.yaml
````