Files
podinfo/deploy/k9
2018-04-07 02:46:47 +03:00
..
2018-04-07 01:40:13 +03:00
2018-04-06 20:53:54 +03:00
2018-04-06 20:53:54 +03:00
2018-04-07 02:46:47 +03:00
2018-04-06 20:53:54 +03:00
2018-04-06 20:53:54 +03:00
2018-04-06 20:53:54 +03:00
2018-04-06 20:53:54 +03:00
2018-04-07 02:15:55 +03:00
2018-04-07 02:15:55 +03:00

Cloud9 IDE Kubernetes

Create the namespaces:

kubectl apply -f ./deploy/k9/k9-ns.yaml

Create a secret with the Git ssh key:

kubectl apply -f ./deploy/k9/ssh-key.yaml

Create the Git Server deploy and service:

kubectl apply -f ./deploy/k9/git-dep.yaml
kubectl apply -f ./deploy/k9/git-svc.yaml

Create the Cloud9 IDE deployment:

kubectl apply -f ./deploy/k9/

Find the public IP:

kubectl -n ide get svc --selector=name=ide

Open Cloud9 IDE in your browser, login with username/password and config git:

git config --global user.email "user@weavedx.com" 
git config --global user.name "User"

Commit a change to podinfo repo:

cd k8s-podinfo
rm Dockerfile.build
git add .
git commit -m "test"
git push origin master