Created
October 29, 2023 02:02
-
-
Save stephenlauck/dafcf4c8df6a8ada8d7f302ad551e5f1 to your computer and use it in GitHub Desktop.
Ingress for podinfo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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