diff --git a/charts/zora/Chart.yaml b/charts/zora/Chart.yaml index 4d2ef1c..05586b3 100644 --- a/charts/zora/Chart.yaml +++ b/charts/zora/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v2 name: zora -description: Zora scans multiple Kubernetes clusters and reports potential issues. +description: A multi-plugin solution that reports misconfigurations and vulnerabilities by scanning your cluster at scheduled times. icon: https://zora-docs.undistro.io/assets/logo.png type: application version: 0.7.0-rc6 diff --git a/charts/zora/README.md b/charts/zora/README.md index ee5679a..d5f802f 100644 --- a/charts/zora/README.md +++ b/charts/zora/README.md @@ -2,7 +2,7 @@ ![Version: 0.7.0-rc6](https://img.shields.io/badge/Version-0.7.0--rc6-informational?style=flat-square&color=3CA9DD) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square&color=3CA9DD) ![AppVersion: v0.7.0-rc6](https://img.shields.io/badge/AppVersion-v0.7.0--rc6-informational?style=flat-square&color=3CA9DD) -Zora scans multiple Kubernetes clusters and reports potential issues. +A multi-plugin solution that reports misconfigurations and vulnerabilities by scanning your cluster at scheduled times. ## Installing the Chart @@ -10,19 +10,18 @@ To install the chart with the release name `zora`: ```console helm repo add undistro https://charts.undistro.io --force-update +helm repo update undistro helm upgrade --install zora undistro/zora \ -n zora-system \ --version 0.7.0-rc6 \ - --create-namespace --wait + --create-namespace \ + --wait \ + --set clusterName="$(kubectl config current-context)" ``` -> The Helm chart repository has been updated from `https://registry.undistro.io/chartrepo/library` to `https://charts.undistro.io`. -> -> The `--force-update` flag is needed to update the repository URL. - -These commands deploy Zora on the Kubernetes cluster in the default configuration. +These commands deploy Zora on the Kubernetes cluster with the default configuration. -The [Parameters](#parameters) section lists the parameters that can be configured during installation. +The [Parameters](#parameters) section lists the available parameters that can be configured during installation. > **Tips:** > diff --git a/charts/zora/README.md.gotmpl b/charts/zora/README.md.gotmpl index 722ed0c..2a8ce0a 100644 --- a/charts/zora/README.md.gotmpl +++ b/charts/zora/README.md.gotmpl @@ -1,9 +1,9 @@ {{- $release := "zora" -}} {{- $namespace := "zora-system" -}} {{- $repoURL := "https://charts.undistro.io" -}} -{{- $oldRepoURL := "https://registry.undistro.io/chartrepo/library" -}} {{- $repoName := "undistro" -}} {{- $title := .Name | title -}} + # {{ $title }} Helm Chart {{ template "chart.deprecationWarning" . }} @@ -17,20 +17,19 @@ To install the chart with the release name `{{ $release }}`: ```console -helm repo add {{ $repoName }} {{ $repoURL }} {{ if $oldRepoURL }}--force-update{{ end }} +helm repo add {{ $repoName }} {{ $repoURL }} --force-update +helm repo update {{ $repoName }} helm upgrade --install {{ $release }} {{ $repoName }}/{{ template "chart.name" . }} \ -n {{ $namespace }} \ --version {{ template "chart.version" . }} \ - --create-namespace --wait + --create-namespace \ + --wait \ + --set clusterName="$(kubectl config current-context)" ``` -{{ if $oldRepoURL }} -> The Helm chart repository has been updated from `{{ $oldRepoURL }}` to `{{ $repoURL }}`. -> -> The `--force-update` flag is needed to update the repository URL. -{{ end }} -These commands deploy {{ $title }} on the Kubernetes cluster in the default configuration. -The [Parameters](#parameters) section lists the parameters that can be configured during installation. +These commands deploy {{ $title }} on the Kubernetes cluster with the default configuration. + +The [Parameters](#parameters) section lists the available parameters that can be configured during installation. > **Tips:** >