Compare commits
No commits in common. "b2df8f58952affd0ac4e96f5949db58c0900370c" and "4fda5c188a70bc918b4849c9c4fd78c224d66285" have entirely different histories.
b2df8f5895
...
4fda5c188a
17
blog-balance.yaml
Normal file
17
blog-balance.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
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,7 +2,6 @@ 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:
|
||||||
|
@ -1,8 +1,3 @@
|
|||||||
# Docker Compose Cheat Sheet
|
# Dockerfile Cheat Sheet
|
||||||
|
|
||||||
Coming soon...
|
Coming soon...
|
||||||
|
|
||||||
In the mean time, check out:
|
|
||||||
|
|
||||||
- [devhints cheat sheet](https://devhints.io/docker-compose)
|
|
||||||
- [The official Docker docs](https://docs.docker.com/compose/compose-file/compose-file-v3/)
|
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
# Home
|
# Home
|
||||||
|
|
||||||
This is my blog, I try to post interesting and helpful stuff on here!
|
This is my blog, I post intersting stuff on here sometimes I guess.
|
||||||
|
|
||||||
Check out my different write ups!
|
Check out my different write ups!
|
||||||
|
|
||||||
|
|
||||||
[Gitea](https://gitea.scalz.cloud)
|
|
||||||
|
|
||||||
[Speedtest](https://speedtest.scalz.cloud)
|
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
#! /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