1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/internal/suites/example/kube/bootstrap-authelia.sh

8 lines
186 B
Bash
Raw Normal View History

#!/bin/sh
start_authelia() {
2019-11-30 23:49:52 +07:00
kubectl create configmap authelia-config --namespace=authelia --from-file=authelia/configs/configuration.yml
kubectl apply -f authelia
}
start_authelia