Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hakaneroztekin/kubernetes-manifest-samples
⎈ Code examples for the Medium article
https://github.com/hakaneroztekin/kubernetes-manifest-samples
configmap ingress ingress-nginx kubernetes kubernetes-cluster kubernetes-deployment secret
Last synced: about 2 months ago
JSON representation
⎈ Code examples for the Medium article
- Host: GitHub
- URL: https://github.com/hakaneroztekin/kubernetes-manifest-samples
- Owner: hakaneroztekin
- Created: 2022-07-19T17:07:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-05T08:59:02.000Z (over 2 years ago)
- Last Synced: 2023-03-08T11:17:56.341Z (almost 2 years ago)
- Topics: configmap, ingress, ingress-nginx, kubernetes, kubernetes-cluster, kubernetes-deployment, secret
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Hello,
This is a supplementary repository for [kubernetes in a nutshell](https://hakaneroztekin.medium.com/kubernetes-in-a-nutshell-f2916a138f59) article.
#### Note about Ingress
For ingress to work, install the Ingress controller.
`kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.3.0/deploy/static/provider/cloud/deploy.yaml`
You may need port forwarding too,
`kubectl port-forward --namespace=ingress-nginx service/ingress-nginx-controller 8080:80`
For more details about installation, check [official documentation](https://kubernetes.github.io/ingress-nginx/deploy/#quick-start).