Kubernetes Console
Use the console by navigating to the controller's address with path /zac/
in a web browser. If you published the controller at ctrl.ziti.example.com:443
, then the console URL is https://ctrl.ziti.example.com/zac/
.
The correct console URL is displayed after Helm install or upgrade and may be fetched at any time with Helm.
Substitute your Helm release name for 'ziti-controller'
helm get notes "ziti-controller"
Print the username and password
kubectl get secrets ziti-controller-admin-secret \
--output go-template=\
'{{range $k,$v := .data}}'\
'{{printf "%s: " $k}}{{if not $v}}{{$v}}{{else}}{{$v|base64decode}}{{end}}{{"\n"}}'\
'{{end}}'