Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

Conversation

@almereyda
Copy link

apps is out of beta

apps is out of beta
@almereyda
Copy link
Author

Should we also add an example how to create an ingress?

https://kubernetes.io/docs/concepts/services-networking/ingress/#the-ingress-resource gives an example with Nginx, here we are using Traefik instead:

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: hello-world-ingress
spec:
  ingressClassName: traefik      
  rules:
  - http:
      paths:
      - path: /        
        pathType: Prefix
        backend:
          service:
            name: hello-world
            port:
              number: 80

I understand that Ingresses are very opinionated in their configuration, and can differ from case to case.

This is why I am asking how best to approach the Kubernetes example, in order that it feels complete and produces a website displayed on the computer.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant