Compare commits

..

3 Commits

Author SHA1 Message Date
John Doe
b2df8f5895 some k8s stuff 2023-02-13 18:13:10 -05:00
John Doe
43535c3e2c reworded and added links to some services 2023-02-13 18:12:18 -05:00
John Doe
635276f04a updated docker-compose md 2023-02-13 18:11:57 -05:00
5 changed files with 22 additions and 19 deletions

View File

@ -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

View File

@ -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:

View File

@ -1,3 +1,8 @@
# Dockerfile Cheat Sheet # Docker Compose 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/)

View File

@ -1,5 +1,10 @@
# Home # Home
This is my blog, I post intersting stuff on here sometimes I guess. This is my blog, I try to post interesting and helpful stuff on here!
Check out my different write ups! Check out my different write ups!
[Gitea](https://gitea.scalz.cloud)
[Speedtest](https://speedtest.scalz.cloud)

9
force_update.sh Executable file
View 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