Foam in Code Server pushing to GitHub

Опубликовано: 04 Июнь 2026
на канале: Klaudioz
213
0

This is a demo of Foam working in code-server behind a Kubernetes server. It's using https and it's working perfectly, even I've set a shortcut to push to my GitHub repo with the files.
It's not necessary to do it in Kubernetes. You can do it in a simple cloud VM like: https://www.digitalocean.com/communit...
In Kubernetes I set the cluster and basically I did: (I used GKE)
Create a regional static IP
Install Nginx (Reverse proxy)
helm install nginx stable/nginx-ingress --set controller.service.loadBalancerIP=CREATED_IP
Install cert-manager (To get https)
kubectl apply --validate=false -f https://raw.githubusercontent.com/jet...
helm install cert-manager --namespace cert-manager --version v0.12.0 jetstack/cert-manager
kubectl apply -f issuer.yaml (Create letsencrypt issuer)
Install code-server
kubectl create deployment code-server --image=codercom/code-server:3.4.1
kubectl expose deployment code-server --port 8080 --target-port 8080
kubectl apply -f pvc.yaml # Create PersistentVolumeClaim
kubectl apply -f codeserver-ingress.yaml # Create ingress for code.claud.dev
Edit deployment to add PersistentVolumeClaim, password to access

Links
code-server: https://hub.docker.com/r/codercom/cod...
foam: https://marketplace.visualstudio.com/...
Run In Terminal: https://marketplace.visualstudio.com/...