some k8s stuff
This commit is contained in:
parent
43535c3e2c
commit
b2df8f5895
@ -1,17 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: blog-balancer
|
|
||||||
labels:
|
|
||||||
app: blog-balancer
|
|
||||||
|
|
||||||
spec:
|
|
||||||
type: LoadBalancer
|
|
||||||
ports:
|
|
||||||
- name: blog-balancer
|
|
||||||
port: 80
|
|
||||||
protocol: TCP
|
|
||||||
targetPort: 3000
|
|
||||||
selector:
|
|
||||||
app: blog-dep
|
|
||||||
sessionAffinity: None
|
|
@ -2,6 +2,7 @@ apiVersion: apps/v1
|
|||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: blog-dep
|
name: blog-dep
|
||||||
|
namespace: blog
|
||||||
labels:
|
labels:
|
||||||
app: blog-dep
|
app: blog-dep
|
||||||
spec:
|
spec:
|
||||||
|
9
force_update.sh
Executable file
9
force_update.sh
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# You can use this script to force kubernetes to update to the latest image
|
||||||
|
# Looking for a better way to do this...
|
||||||
|
DEPLOYMENT_NAME=blog-dep
|
||||||
|
|
||||||
|
kubectl patch deployment $DEPLOYMENT_NAME -p \
|
||||||
|
'{"spec":{"template":{"spec":{"terminationGracePeriodSeconds":30}}}}' -n blog
|
||||||
|
kubectl patch deployment $DEPLOYMENT_NAME -p \
|
||||||
|
'{"spec":{"template":{"spec":{"terminationGracePeriodSeconds":60}}}}' -n blog
|
Loading…
Reference in New Issue
Block a user