Refreshes Images in Case of New Image
This commit is contained in:
@@ -111,6 +111,9 @@ function main() {
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Refreshes all pods in case of a new image
|
||||||
|
bash ./refresh.sh
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
19
refresh.sh
Executable file
19
refresh.sh
Executable file
@@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
NAMESPACES=(
|
||||||
|
portfolio
|
||||||
|
)
|
||||||
|
|
||||||
|
DEPLOYMENTS=(
|
||||||
|
"frontend-deployment"
|
||||||
|
"backend-deployment"
|
||||||
|
"storage-deployment"
|
||||||
|
"storage-processor-deployment"
|
||||||
|
)
|
||||||
|
|
||||||
|
for i in "${NAMESPACES[@]}"; do
|
||||||
|
for x in "${DEPLOYMENTS[@]}"; do
|
||||||
|
PODS=$(kubectl -n $i get pods --no-headers | awk '{print $1}' | grep $x | tr '\n' ' ')
|
||||||
|
kubectl -n $i delete pods $PODS
|
||||||
|
done
|
||||||
|
done
|
||||||
1
setup.py
1
setup.py
@@ -13,6 +13,7 @@ def write_template(template: str, output: str):
|
|||||||
open(output, 'w') as output:
|
open(output, 'w') as output:
|
||||||
output.write(envsubst(template.read()))
|
output.write(envsubst(template.read()))
|
||||||
|
|
||||||
|
|
||||||
def configure_templates(environment: str):
|
def configure_templates(environment: str):
|
||||||
if not environment in ("prod", "staging", "local"):
|
if not environment in ("prod", "staging", "local"):
|
||||||
raise ValueError("Invalid Environment Selected")
|
raise ValueError("Invalid Environment Selected")
|
||||||
|
|||||||
Reference in New Issue
Block a user