summaryrefslogtreecommitdiff
path: root/scripts/k8s
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-15 16:02:02 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-15 16:02:02 +0200
commit7b404a6d2321f27e9a808aca267bf8f9e4e681aa (patch)
tree472003eba97e891d68b241254531bb07033e810e /scripts/k8s
parent02e41bc8e457ffb6a96e8ae551f172df8140c578 (diff)
Remove K8s stuff
Diffstat (limited to 'scripts/k8s')
-rwxr-xr-xscripts/k8s40
1 files changed, 0 insertions, 40 deletions
diff --git a/scripts/k8s b/scripts/k8s
deleted file mode 100755
index 350a19a..0000000
--- a/scripts/k8s
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/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