diff --git a/helm/templates/ingress.yaml b/helm/templates/ingress.yaml new file mode 100644 index 0000000..2c9d61b --- /dev/null +++ b/helm/templates/ingress.yaml @@ -0,0 +1,18 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: hello-world-ingress + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: web +spec: + rules: + - host: hello-world.local + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: hello-world-service + port: + number: 80 \ No newline at end of file