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
70cc755fde
Co-authored-by: winston <hey@winston.sh> |
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
deployment.yaml | 2 years ago | |
ingress.yaml | 2 years ago | |
service.yaml | 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