authelia/internal/suites/example/kube/bootstrap-authelia.sh

9 lines
314 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 create configmap authelia-ssl --namespace=authelia --from-file=authelia/ssl/cert.pem --from-file=authelia/ssl/key.pem
kubectl apply -f authelia
}
start_authelia