Skip to content

Commit

Permalink
Deal with unsupported charcters in cluster name in notes file (#34)
Browse files Browse the repository at this point in the history
* random values for cronjobs

* initial version of post-install notes

* don't change to random existing deployments

* fix notes to allow the user see the schedules

* app version like we had

* fix PR comments

* run only in KS org

* Update Chart.yaml (#30)

* Update .github/workflows/helm-chart-release.yaml

Co-authored-by: David Wertenteil <[email protected]>

* Update .github/workflows/helm-chart-release.yaml

Co-authored-by: David Wertenteil <[email protected]>

* try to force release

* deal with cluster names in notes file

Co-authored-by: David Wertenteil <[email protected]>
  • Loading branch information
Bezbran and David Wertenteil authored Dec 22, 2022
1 parent 958f82e commit 5617e97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/kubescape-cloud-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.8.9
version: 1.8.10

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 1.8.9
appVersion: 1.8.10

maintainers:
- name: Ben Hirschberg
Expand Down
6 changes: 3 additions & 3 deletions charts/kubescape-cloud-operator/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Thank you for installing {{ .Chart.Name }} version {{ .Chart.Version }}.

In a few minutes your scan results will be available in the following link:
https://cloud.armosec.io/configuration-scanning/{{ .Values.clusterName }}
https://cloud.armosec.io/configuration-scanning/{{ regexReplaceAll "\\W+" .Values.clusterName "-" | lower }}

You can see and change the values of your's recurring configurations daily scan in the following link:
https://cloud.armosec.io/settings/assets/clusters/scheduled-scans?cluster={{ .Values.clusterName }}
https://cloud.armosec.io/settings/assets/clusters/scheduled-scans?cluster={{ regexReplaceAll "\\W+" .Values.clusterName "-" | lower }}
> kubectl -n {{ .Values.ksNamespace }} get cj {{ .Values.kubescapeScheduler.name }} -o=jsonpath='{.metadata.name}{"\t"}{.spec.schedule}{"\n"}'

You can see and change the values of your's recurring images daily scan in the following link:
https://cloud.armosec.io/settings/assets/images
> kubectl -n {{ .Values.ksNamespace }} get cj {{ .Values.kubevulnScheduler.name }} -o=jsonpath='{.metadata.name}{"\t"}{.spec.schedule}{"\n"}'

See you!!!

0 comments on commit 5617e97

Please sign in to comment.