wiki-js/DevOps/Kubernetes/Helm/manifests/ingressyaml.md

623 B

title description published date tags editor dateCreated
ingressyaml true 2023-11-07T17:56:00.244Z markdown 2023-11-07T17:42:43.772Z
---
kind: Ingress
apiVersion: networking.k8s.io/v1
metadata:
  name: application
  annotations:
    kubernetes.io/ingress.class: "system-ingress"
    certmanager.k8s.io/cluster-issuer: monitoring-issuer
spec:
  rules:
    - host: "application.kryukov.local"
      http:
        paths:
          - pathType: Prefix
            path: /
            backend:
              service:
                name: openresty
                port:
                  number: 80