From 54e6c909263e0394cb67dedc2c44bbfc06216894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=A3=EF=B8=8F=20Arka=20=E2=98=A3=EF=B8=8F?= Date: Tue, 14 Nov 2023 16:17:12 +0530 Subject: [PATCH] docs: fix chart version (#1634) --- docs/tutorials/private-registries.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorials/private-registries.md b/docs/tutorials/private-registries.md index 527f4f187..3fe18a76a 100644 --- a/docs/tutorials/private-registries.md +++ b/docs/tutorials/private-registries.md @@ -47,7 +47,7 @@ Lastly, we can deploy the operator inside our cluster with referencing our new ` helm upgrade --install trivy-operator aqua/trivy-operator \ --namespace trivy-system \ --create-namespace \ - --version 0.16.4 + --version {{ var.chart_version }} --values ./values.yaml ``` @@ -57,7 +57,7 @@ Alternatively, it is possible to set the values directly through Helm instead of helm upgrade --install trivy-operator aqua/trivy-operator \ --namespace trivy-system \ --create-namespace \ - --version 0.16.4 + --version {{ var.chart_version }} --set="trivy.command=fs" --set="trivyOperator.scanJobPodTemplateContainerSecurityContext.runAsUser=0" ``` @@ -230,7 +230,7 @@ Lastly, we can deploy the operator inside our cluster with referencing our new ` helm upgrade --install trivy-operator aqua/trivy-operator \ --namespace trivy-system \ --create-namespace \ - --version 0.16.4 + --version {{ var.chart_version }} --values ./values.yaml ``` @@ -240,7 +240,7 @@ Alternatively, it is possible to set the values directly through Helm instead of helm upgrade --install trivy-operator aqua/trivy-operator \ --namespace trivy-system \ --create-namespace \ - --version 0.16.4 + --version {{ var.chart_version }} --set-json='operator.privateRegistryScanSecretsNames={"app":"dockerconfigjson-github-com"}' ```