authelia/internal/suites/example/kube/bootstrap-authelia.sh
2020-02-09 18:04:27 +01:00

8 lines
186 B
Bash
Executable File

#!/bin/sh
start_authelia() {
kubectl create configmap authelia-config --namespace=authelia --from-file=authelia/configs/configuration.yml
kubectl apply -f authelia
}
start_authelia