mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
6ccc92e47e
Co-authored-by: Victor Büttner <victor@0x23.dk> Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
12 lines
377 B
Bash
Executable File
12 lines
377 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
start_dashboard() {
|
|
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-beta8/aio/deploy/recommended.yaml
|
|
kubectl apply -f dashboard.yml
|
|
|
|
echo "Bearer token for UI user."
|
|
kubectl -n kubernetes-dashboard describe secret $(kubectl -n kubernetes-dashboard get secret | grep admin-user | awk '{print $1}')
|
|
}
|
|
|
|
start_dashboard
|