-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deal with unsupported charcters in cluster name in notes file (#34)
* 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
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!!! |