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 31, 2023
1 parent 595f655 commit 17ae94b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions charts/zora/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
apiVersion: v2
name: zora
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
icon: https://zora-docs.undistro.io/v0.7/assets/logo.svg
type: application
version: 0.7.0-rc7
appVersion: "v0.7.0-rc7"
version: 0.7.0
appVersion: "v0.7.0"
sources:
- https://github.com/undistro/zora
16 changes: 8 additions & 8 deletions charts/zora/README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Zora Helm Chart

![Version: 0.7.0-rc7](https://img.shields.io/badge/Version-0.7.0--rc7-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-rc7](https://img.shields.io/badge/AppVersion-v0.7.0--rc7-informational?style=flat-square&color=3CA9DD)
![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-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](https://img.shields.io/badge/AppVersion-v0.7.0-informational?style=flat-square&color=3CA9DD)

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`:
To install the chart with the release name `zora` in `zora-system` namespace:

```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-rc7 \
--version 0.7.0 \
--create-namespace \
--wait \
--set clusterName="$(kubectl config current-context)"
Expand All @@ -31,7 +31,7 @@ The [Parameters](#parameters) section lists the available parameters that can be
>
> - List all versions available of `undistro/zora` chart using `helm search repo undistro/zora --versions`
>
> - List all releases using `helm list`
> - List all releases in a specific namespace using `helm list -n zora-system`
>
> - Get the notes provided by `zora` release using `helm get notes zora -n zora-system`
Expand All @@ -40,7 +40,7 @@ The [Parameters](#parameters) section lists the available parameters that can be
To uninstall/delete the `zora` release:

```console
$ helm delete zora
helm uninstall zora -n zora-system
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand Down Expand Up @@ -122,14 +122,14 @@ The following table lists the configurable parameters of the Zora chart and thei
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

```console
$ helm install zora \
--set server.service.port=8080 undistro/zora
helm install zora \
--set operator.resources.limits.memory=256Mi undistro/zora
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,

```console
$ helm install zora -f values.yaml undistro/zora
helm install zora -f values.yaml undistro/zora
```

> **Tip**: You can use the default [values.yaml](values.yaml)
12 changes: 6 additions & 6 deletions charts/zora/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## Installing the Chart

To install the chart with the release name `{{ $release }}`:
To install the chart with the release name `{{ $release }}` in `{{ $namespace }}` namespace:

```console
helm repo add {{ $repoName }} {{ $repoURL }} --force-update
Expand All @@ -39,7 +39,7 @@ The [Parameters](#parameters) section lists the available parameters that can be
>
> - List all versions available of `{{ $repoName }}/{{ $release }}` chart using `helm search repo {{ $repoName }}/{{ $release }} --versions`
>
> - List all releases using `helm list`
> - List all releases in a specific namespace using `helm list -n {{ $namespace }}`
>
> - Get the notes provided by `{{ $release }}` release using `helm get notes {{ $release }} -n {{ $namespace }}`

Expand All @@ -48,7 +48,7 @@ The [Parameters](#parameters) section lists the available parameters that can be
To uninstall/delete the `{{ $release }}` release:

```console
$ helm delete {{ $release }}
helm uninstall {{ $release }} -n {{ $namespace }}
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand All @@ -62,14 +62,14 @@ The following table lists the configurable parameters of the {{ $title }} chart
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

```console
$ helm install {{ $release }} \
--set server.service.port=8080 {{ $repoName }}/{{ template "chart.name" . }}
helm install {{ $release }} \
--set operator.resources.limits.memory=256Mi {{ $repoName }}/{{ template "chart.name" . }}
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,

```console
$ helm install {{ $release }} -f values.yaml {{ $repoName }}/{{ template "chart.name" . }}
helm install {{ $release }} -f values.yaml {{ $repoName }}/{{ template "chart.name" . }}
```

> **Tip**: You can use the default [values.yaml](values.yaml)

0 comments on commit 17ae94b

Please sign in to comment.