mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
8 lines
186 B
Bash
Executable File
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 |