Skip to content

Commit

Permalink
update zora chart
Browse files Browse the repository at this point in the history
  • Loading branch information
undistrobot committed Apr 1, 2024
1 parent 7f88eb2 commit 4265759
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions charts/zora/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ 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/v0.7/assets/logo.svg
type: application
version: 0.8.4-rc2
appVersion: "v0.8.4-rc2"
version: 0.8.4-rc3
appVersion: "v0.8.4-rc3"
sources:
- https://github.com/undistro/zora
8 changes: 4 additions & 4 deletions charts/zora/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Zora Helm Chart

![Version: 0.8.4-rc1](https://img.shields.io/badge/Version-0.8.4--rc1-informational?style=flat-square&color=3CA9DD) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square&color=3CA9DD) ![AppVersion: v0.8.4-rc1](https://img.shields.io/badge/AppVersion-v0.8.4--rc1-informational?style=flat-square&color=3CA9DD)
![Version: 0.8.4-rc3](https://img.shields.io/badge/Version-0.8.4--rc3-informational?style=flat-square&color=3CA9DD) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square&color=3CA9DD) ![AppVersion: v0.8.4-rc3](https://img.shields.io/badge/AppVersion-v0.8.4--rc3-informational?style=flat-square&color=3CA9DD)

A multi-plugin solution that reports misconfigurations and vulnerabilities by scanning your cluster at scheduled times.

Expand All @@ -13,7 +13,7 @@ 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.8.4-rc1 \
--version 0.8.4-rc3 \
--create-namespace \
--wait \
--set clusterName="$(kubectl config current-context)"
Expand Down Expand Up @@ -115,7 +115,7 @@ The following table lists the configurable parameters of the Zora chart and thei
| scan.plugins.trivy.resources | object | `{}` | [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) to add to `trivy` container |
| scan.plugins.trivy.podAnnotations | object | `{}` | Annotations added to the trivy pods |
| scan.plugins.trivy.image.repository | string | `"ghcr.io/undistro/trivy"` | trivy plugin image repository |
| scan.plugins.trivy.image.tag | string | `"0.49.1-3"` | trivy plugin image tag |
| scan.plugins.trivy.image.tag | string | `"0.50.1-1"` | trivy plugin image tag |
| scan.plugins.trivy.env | list | `[]` | List of environment variables to set in trivy container. |
| scan.plugins.trivy.envFrom | list | `[]` | List of sources to populate environment variables in trivy container. |
| scan.plugins.trivy.timeout | string | `"10m"` | Trivy timeout |
Expand All @@ -124,7 +124,7 @@ The following table lists the configurable parameters of the Zora chart and thei
| scan.plugins.popeye.resources | object | `{"limits":{"cpu":"500m","memory":"500Mi"},"requests":{"cpu":"250m","memory":"256Mi"}}` | [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) to add to `popeye` container |
| scan.plugins.popeye.podAnnotations | object | `{}` | Annotations added to the popeye pods |
| scan.plugins.popeye.image.repository | string | `"ghcr.io/undistro/popeye"` | popeye plugin image repository |
| scan.plugins.popeye.image.tag | string | `"0.21.1-4"` | popeye plugin image tag |
| scan.plugins.popeye.image.tag | string | `"0.21.3-6"` | popeye plugin image tag |
| scan.plugins.popeye.env | list | `[]` | List of environment variables to set in popeye container. |
| scan.plugins.popeye.envFrom | list | `[]` | List of sources to populate environment variables in popeye container. |
| kubexnsImage.repository | string | `"ghcr.io/undistro/kubexns"` | kubexns image repository |
Expand Down
5 changes: 4 additions & 1 deletion charts/zora/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,21 @@ Once the cluster is successfully scanned, you can check issues by running:

Visit our documentation for in-depth information: https://zora-docs.undistro.io

{{ if .Values.saas.workspaceID -}}
{{- if .Values.saas.workspaceID }}

Visit Zora Dashboard to explore your clusters and issues: {{ .Values.saas.server }}
{{- end }}

{{- $warnMisconfig := and .Values.scan.misconfiguration.schedule (include "zora.IsMisconfigScheduleMoreOftenThanHourly" .) }}
{{- if eq $warnMisconfig "true" }}

WARNING: The misconfiguration scan appears to be scheduled to run more frequently than hourly, you should be aware this
may lead to higher resource utilization and network traffic.
{{- end }}

{{- $warVuln := and .Values.scan.vulnerability.schedule (include "zora.IsVulnScheduleMoreOftenThanDaily" .) }}
{{- if eq $warVuln "true" }}

WARNING: The vulnerability scan appears to be scheduled to run more frequently than daily, potentially leading to
significant increases in networking costs and resource utilization. This is particularly relevant for
vulnerability scans, which involve downloading a vulnerability database and pulling images.
Expand Down
4 changes: 2 additions & 2 deletions charts/zora/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ scan:
# -- trivy plugin image repository
repository: ghcr.io/undistro/trivy
# -- trivy plugin image tag
tag: 0.49.1-3
tag: 0.50.1-1
# -- List of environment variables to set in trivy container.
env: []
# - name: AWS_REGION
Expand Down Expand Up @@ -254,7 +254,7 @@ scan:
# -- popeye plugin image repository
repository: ghcr.io/undistro/popeye
# -- popeye plugin image tag
tag: 0.21.1-4
tag: 0.21.3-6
# -- List of environment variables to set in popeye container.
env: []
# -- List of sources to populate environment variables in popeye container.
Expand Down

0 comments on commit 4265759

Please sign in to comment.