mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
28619ce3db
* refactor: argocd lab Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * refactor: split argocd lab into multiple steps Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix tempo Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
23 lines
873 B
Bash
Executable file
23 lines
873 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
readonly SRC=$(dirname "$0")
|
|
|
|
$SRC/common-steps.sh
|
|
$SRC/6-metrics-server.sh
|
|
$SRC/7-kyverno.sh
|
|
$SRC/8-kyverno-policies.sh
|
|
$SRC/9-policy-reporter.sh
|
|
|
|
echo "---------------------------------------------------------------------------------"
|
|
|
|
ARGOCD_PASSWORD=$(kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d)
|
|
|
|
echo "ARGOCD is running and available at http://localhost/argocd"
|
|
echo "- log in with admin / $ARGOCD_PASSWORD"
|
|
echo "POLICY-REPORTER is running and available at http://localhost/policy-reporter"
|
|
echo "PROMETHEUS is running and available at http://localhost/prometheus"
|
|
echo "ALERTMANAGER is running and available at http://localhost/alertmanager"
|
|
echo "GRAFANA is running and available at http://localhost/grafana"
|
|
echo "- log in with admin / admin"
|