Skip to content

Commit

Permalink
rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusfm committed Jun 21, 2023
1 parent 7a1284b commit 1c7df49
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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: Zora scans multiple Kubernetes clusters and reports potential issues.
icon: https://zora-docs.undistro.io/assets/logo.png
type: application
version: 0.6.2-rc1
appVersion: "v0.6.2-rc1"
version: 0.6.2-rc2
appVersion: "v0.6.2-rc2"
sources:
- https://github.com/undistro/zora
4 changes: 2 additions & 2 deletions charts/zora/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Zora Helm Chart

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

Zora scans multiple Kubernetes clusters and reports potential issues.

Expand All @@ -12,7 +12,7 @@ To install the chart with the release name `zora`:
helm repo add undistro https://charts.undistro.io --force-update
helm upgrade --install zora undistro/zora \
-n zora-system \
--version 0.6.2-rc1 \
--version 0.6.2-rc2 \
--create-namespace --wait
```

Expand Down
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func main() {
flag.StringVar(&cronJobServiceAccount, "cronjob-serviceaccount-name", "zora-plugins", "Name of ServiceAccount to be configured, appended to ClusterRoleBinding and used by CronJobs")
flag.StringVar(&saasWorkspaceID, "saas-workspace-id", "", "Your workspace ID in Zora SaaS")
flag.StringVar(&saasServer, "saas-server", "http://localhost:3003", "Address for Zora's saas server")
flag.StringVar(&version, "version", "0.6.2-rc1", "Zora version")
flag.StringVar(&version, "version", "0.6.2-rc2", "Zora version")
flag.StringVar(&checksConfigMapNamespace, "checks-configmap-namespace", "zora-system", "Namespace of custom checks ConfigMap")
flag.StringVar(&checksConfigMapName, "checks-configmap-name", "zora-custom-checks", "Name of custom checks ConfigMap")
flag.StringVar(&kubexnsImage, "kubexns-image", "ghcr.io/undistro/kubexns:latest", "kubexns image")
Expand Down
10 changes: 5 additions & 5 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Zora's management cluster requires these programs in order to be installed and c

Before running the `helm upgrade` command, it is necessary to apply the modified CRDs.
```shell
kubectl apply -f https://raw.githubusercontent.com/undistro/zora/v0.6.2-rc1/charts/zora/crds/zora.undistro.io_clusterissues.yaml
kubectl apply -f https://raw.githubusercontent.com/undistro/zora/v0.6.2-rc1/charts/zora/crds/zora.undistro.io_customchecks.yaml
kubectl apply -f https://raw.githubusercontent.com/undistro/zora/v0.6.2-rc1/charts/zora/crds/zora.undistro.io_plugins.yaml
kubectl apply -f https://raw.githubusercontent.com/undistro/zora/v0.6.2-rc2/charts/zora/crds/zora.undistro.io_clusterissues.yaml
kubectl apply -f https://raw.githubusercontent.com/undistro/zora/v0.6.2-rc2/charts/zora/crds/zora.undistro.io_customchecks.yaml
kubectl apply -f https://raw.githubusercontent.com/undistro/zora/v0.6.2-rc2/charts/zora/crds/zora.undistro.io_plugins.yaml
```
These commands ensure that the modified Custom Resource Definitions (CRDs) are applied correctly.

Expand All @@ -51,7 +51,7 @@ Zora's management cluster requires these programs in order to be installed and c
helm upgrade --install zora undistro/zora \
--set saas.workspaceID='<YOUR WORKSPACE ID>'
-n zora-system \
--version 0.6.2-rc1 \
--version 0.6.2-rc2 \
--create-namespace --wait
```

Expand All @@ -64,7 +64,7 @@ Zora's management cluster requires these programs in order to be installed and c
helm repo update undistro
helm upgrade --install zora undistro/zora \
-n zora-system \
--version 0.6.2-rc1 \
--version 0.6.2-rc2 \
--create-namespace --wait
```

Expand Down

0 comments on commit 1c7df49

Please sign in to comment.