Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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).