blob: 350a19a42d09be605d183d012315735ecae24795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/bash
usage() {
echo "Usage: $0 (apply|delete)"
}
if [ $# -ne 1 ]; then
usage
exit 1
fi
command=$1
if [ "$1" != "apply" ] && [ "$1" != "delete" ]; then
usage
exit 1
fi
K8S_FOLDER="../k8s"
if [ "$(basename "$PWD")" = "backend" ]; then
K8S_FOLDER="./k8s"
fi
YAML_FILES=(
"cas-config.yaml"
"cas-deployment.yaml"
"cas-secret.yaml"
"cas-service.yaml"
"network-policy.yaml"
"pgdata-pvc.yaml"
"postgres-deployment.yaml"
"postgres-service.yaml"
)
for file in "${YAML_FILES[@]}"; do
file="$K8S_FOLDER/$file"
echo "${command^}ing $file ..."
envsubst < $file | kubectl "$command" -f -
done
|