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:
parent
f087be8c66
commit
f35e37bfb9
1 changed files with 9 additions and 1 deletions
|
@ -79,8 +79,16 @@ Kyverno uses secrets created above to setup TLS communication with the kube-apis
|
||||||
|
|
||||||
### 3. Install Kyverno
|
### 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
|
````sh
|
||||||
kubectl create -f https://github.com/nirmata/kyverno/raw/master/definitions/install.yaml
|
kubectl create -f https://github.com/nirmata/kyverno/raw/master/definitions/install.yaml
|
||||||
````
|
````
|
||||||
|
|
Loading…
Reference in a new issue