Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ingress.yaml
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: example-ingress namespace: default spec: ingressClassName: nginx rules: - http: paths: - pathType: Prefix path: / backend: service: name: example-service port: number: 80
name
namespace
ingressClassName
nginx
path
service.name
service.port.number
kubectl apply -f ingress.yaml
ingress.networking.k8s.io/example-ingress created
Was this page helpful?