Merge branch 'main' into implements-workflow-dispatcher
This commit is contained in:
@@ -111,6 +111,9 @@ function main() {
|
||||
|
||||
fi
|
||||
|
||||
# Refreshes all pods in case of a new image
|
||||
bash ./refresh.sh
|
||||
|
||||
exit 0
|
||||
|
||||
}
|
||||
|
||||
@@ -22,8 +22,8 @@ spec:
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
cpu: "750m"
|
||||
memory: "768Mi"
|
||||
cpu: "500m"
|
||||
ports:
|
||||
- containerPort: 8070
|
||||
env:
|
||||
|
||||
@@ -24,8 +24,8 @@ spec:
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
limits:
|
||||
memory: "1536Mi"
|
||||
cpu: "750m"
|
||||
memory: "512Mi"
|
||||
cpu: "500m"
|
||||
ports:
|
||||
- containerPort: 5000
|
||||
env:
|
||||
|
||||
@@ -22,7 +22,7 @@ spec:
|
||||
memory: "512Mi"
|
||||
cpu: "500m"
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
memory: "768Mi"
|
||||
cpu: "500m"
|
||||
ports:
|
||||
- containerPort: 5432
|
||||
|
||||
@@ -23,7 +23,7 @@ spec:
|
||||
cpu: "250m"
|
||||
limits:
|
||||
memory: "1024Mi"
|
||||
cpu: "500m"
|
||||
cpu: "250m"
|
||||
ports:
|
||||
- containerPort: 6379
|
||||
env:
|
||||
|
||||
@@ -22,8 +22,8 @@ spec:
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
cpu: "500m"
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
ports:
|
||||
- containerPort: 8000
|
||||
env:
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user