authelia/example/kube/bootstrap-authelia.sh

8 lines
181 B
Bash
Executable File

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