authelia/example/kube/bootstrap-authelia.sh
2019-12-05 11:05:24 +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