Skip to content

Instantly share code, notes, and snippets.

@stephenlauck
Created October 29, 2023 02:02
Show Gist options
  • Save stephenlauck/dafcf4c8df6a8ada8d7f302ad551e5f1 to your computer and use it in GitHub Desktop.
Save stephenlauck/dafcf4c8df6a8ada8d7f302ad551e5f1 to your computer and use it in GitHub Desktop.
Ingress for podinfo
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: basic-ingress
namespace: default
spec:
ingressClassName: cilium
rules:
- http:
paths:
- backend:
service:
name: podinfo
port:
number: 9898
path: /
pathType: Prefix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment