-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Thank you for installing {{ .Chart.Name }}. You can list your Task with: | ||
|
||
kubectl get tasks -n {{ .Release.Namespace }} | ||
{{ if .Values.kubeteach.dashboard.enabled }} | ||
The Dashboard is enabled. DO NOT MAKE IT AVAILABLE VIA INTERNET! | ||
You can use it with the following command (to forward a local port): | ||
|
||
kubectl port-forward -n {{ .Release.Namespace}} service/kubeteach-dashboard 8080:80 | ||
|
||
Now you can access the dashboard via http://localhost:8080 | ||
Username: {{ .Values.kubeteach.dashboard.credentials.username }} | ||
Password: | ||
{{- $secret := (lookup "v1" "Secret" .Release.Namespace "kubeteach" ) -}} | ||
{{- if and $secret.data (not .Values.kubeteach.webterminal.credentials.password) -}} | ||
{{ index $secret "data" "password" | b64dec }} | ||
{{- end -}} | ||
{{- end}} |