Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 1.17 KB

README.md

File metadata and controls

36 lines (32 loc) · 1.17 KB

tiny-dev

PoC of locally hosted and self managed dev containers on kubernetes

# run with desired username & password as env vars
docker run \
  --env DEV_USER=fishbot \
  --env DEV_PASSWD=glub \
  -p 2222:22 \
  ssh
  • ingress-nginx expose tcp service

  • ssh may be the wrong approach if vscode server can do it over http

    kubectl run vscode --image=linuxserver/code-server
    kubectl expose pod vscode --port 8443 --target-port 8443
    • add entry to ingress
      - backend:
              service:
                name: vscode
                port:
                  number: 8443
            path: /
            pathType: Prefix
    • for nodeport ingress-controller deployment, get http port and node ip
    PORT=$(kubectl get svc -n ingress-nginx ingress-nginx-controller -o jsonpath='{.spec.ports[?(@.name=="http")].nodePort}')
    IP=$(kubectl get nodes --selector=node-role.kubernetes.io/master -o jsonpath="{.items[*].status.addresses[?(@.type=='InternalIP')].address}")
    • visit http://$IP:$PORT in your browser