mirror of https://github.com/sgoudham/k8s
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sgoudham 7fde8427c5 | 1 year ago | |
---|---|---|
.. | ||
preview | 1 year ago | |
prod | 1 year ago | |
README.md | 2 years ago |
README.md
Setup
kubectl create namespace website
kubectl create deployment website --image sgoudham/website:latest --port 3000
kubectl expose deployment website --port 3000
kubectl create ingress website --rule=goudham.com/\*=website:3000,tls
kubectl get deployment.apps website -o yaml > deployment.yaml
kubectl get services website -o yaml > service.yaml
kubectl get ingress website -o yaml > ingress.yaml