mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-11 07:36:53 +00:00
7178a94792
Signed-off-by: Juri Malinovski <juri.malinovski@coolbet.com> Co-authored-by: loverustfs <hello@rustfs.com>
11 lines
366 B
Plaintext
11 lines
366 B
Plaintext
1. Watch all pods come up
|
|
kubectl get pods -w -l app.kubernetes.io/name={{ include "rustfs.name" . }} -n {{ .Release.Namespace }}
|
|
{{- if .Values.ingress.enabled }}
|
|
2. Visit the dashboard
|
|
{{- range $host := .Values.ingress.hosts }}
|
|
{{- range .paths }}
|
|
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|