Skip to content

Commit

Permalink
update zora chart
Browse files Browse the repository at this point in the history
  • Loading branch information
undistrobot committed Oct 26, 2023
1 parent 37dfe6b commit c133857
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
2 changes: 1 addition & 1 deletion charts/zora/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 7 additions & 8 deletions charts/zora/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,26 @@

![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

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:**
>
Expand Down
19 changes: 9 additions & 10 deletions charts/zora/README.md.gotmpl
Original file line number Diff line number Diff line change
@@ -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" . }}
Expand All @@ -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:**
>
Expand Down

0 comments on commit c133857

Please sign in to comment.