authelia/example/kube/bootstrap-authelia.sh

8 lines
186 B
Bash
Raw Normal View History

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