12 lines
176 B
Bash
Executable File
12 lines
176 B
Bash
Executable File
#/bin/bash
|
|
|
|
# set source env variables
|
|
. ./.env
|
|
|
|
# set variables in env file as export
|
|
export $(cut -d= -f1 ./.env)
|
|
|
|
|
|
envsubst < gitea-backup-secret.yaml | kubectl apply -f -
|
|
|