Skip to content

Commit 78c6782

Browse files
committed
release v0.10.4
1 parent 6f63d4e commit 78c6782

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

charts/zora/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name: zora
1717
description: A multi-plugin solution that reports misconfigurations and vulnerabilities by scanning your cluster at scheduled times.
1818
icon: https://zora-docs.undistro.io/v0.7/assets/logo.svg
1919
type: application
20-
version: 0.10.3
21-
appVersion: "v0.10.3"
20+
version: 0.10.4
21+
appVersion: "v0.10.4"
2222
sources:
2323
- https://github.com/undistro/zora

charts/zora/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Zora Helm Chart
22

3-
![Version: 0.10.3](https://img.shields.io/badge/Version-0.10.3-informational?style=flat-square&color=3CA9DD) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square&color=3CA9DD) ![AppVersion: v0.10.3](https://img.shields.io/badge/AppVersion-v0.10.3-informational?style=flat-square&color=3CA9DD)
3+
![Version: 0.10.4](https://img.shields.io/badge/Version-0.10.4-informational?style=flat-square&color=3CA9DD) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square&color=3CA9DD) ![AppVersion: v0.10.4](https://img.shields.io/badge/AppVersion-v0.10.4-informational?style=flat-square&color=3CA9DD)
44

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

@@ -13,7 +13,7 @@ helm repo add undistro https://charts.undistro.io --force-update
1313
helm repo update undistro
1414
helm upgrade --install zora undistro/zora \
1515
-n zora-system \
16-
--version 0.10.3 \
16+
--version 0.10.4 \
1717
--create-namespace \
1818
--wait \
1919
--set clusterName="$(kubectl config current-context)"
@@ -81,11 +81,6 @@ The following table lists the configurable parameters of the Zora chart and thei
8181
| operator.metricsService.port | int | `8443` | Port of metrics service |
8282
| operator.serviceMonitor.enabled | bool | `false` | Specifies whether a Prometheus `ServiceMonitor` should be enabled |
8383
| operator.resources | object | `{"limits":{"cpu":"500m","memory":"128Mi"},"requests":{"cpu":"10m","memory":"64Mi"}}` | [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) to add to `manager` container |
84-
| operator.rbacProxy.image.repository | string | `"gcr.io/kubebuilder/kube-rbac-proxy"` | `kube-rbac-proxy` image repository |
85-
| operator.rbacProxy.image.tag | string | `"v0.15.0"` | `kube-rbac-proxy` image tag |
86-
| operator.rbacProxy.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
87-
| operator.rbacProxy.securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"readOnlyRootFilesystem":true}` | [Security Context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context) to add to `kube-rbac-proxy` container |
88-
| operator.rbacProxy.resources | object | `{"limits":{"cpu":"500m","memory":"128Mi"},"requests":{"cpu":"5m","memory":"64Mi"}}` | [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) to add to `kube-rbac-proxy` container |
8984
| operator.nodeSelector | object | `{}` | [Node selection](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node) to constrain a Pod to only be able to run on particular Node(s) |
9085
| operator.tolerations | list | `[]` | [Tolerations](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration) for pod assignment |
9186
| operator.affinity | object | `{}` | Map of node/pod [affinities](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration) |

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ func main() {
109109
flag.StringVar(&cronJobAnnotations, "cronjob-serviceaccount-annotations", "annotaion1=value1,annotation2=value2", "Annotations to be applied to the CronJob Service Account")
110110
flag.StringVar(&saasWorkspaceID, "saas-workspace-id", "", "Your workspace ID in Zora SaaS")
111111
flag.StringVar(&saasServer, "saas-server", "http://localhost:3003", "Address for Zora's saas server")
112-
flag.StringVar(&version, "version", "0.10.3", "Zora version")
112+
flag.StringVar(&version, "version", "0.10.4", "Zora version")
113113
flag.StringVar(&checksConfigMapNamespace, "checks-configmap-namespace", "zora-system", "Namespace of custom checks ConfigMap")
114114
flag.StringVar(&checksConfigMapName, "checks-configmap-name", "zora-custom-checks", "Name of custom checks ConfigMap")
115115
flag.StringVar(&kubexnsImage, "kubexns-image", "ghcr.io/undistro/kubexns:latest", "kubexns image")

docs/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Then, run the following command to install or upgrade Zora [Helm chart](https://
3131
helm repo update undistro
3232
helm upgrade --install zora undistro/zora \
3333
-n zora-system \
34-
--version 0.10.3 \
34+
--version 0.10.4 \
3535
--create-namespace \
3636
--wait \
3737
--set clusterName="$(kubectl config current-context)"
@@ -42,7 +42,7 @@ Then, run the following command to install or upgrade Zora [Helm chart](https://
4242
```shell
4343
helm upgrade --install zora oci://ghcr.io/undistro/helm-charts/zora \
4444
-n zora-system \
45-
--version 0.10.3 \
45+
--version 0.10.4 \
4646
--create-namespace \
4747
--wait \
4848
--set clusterName="$(kubectl config current-context)"

0 commit comments

Comments
 (0)