diff --git a/installation/kubernetes/ingress.yaml b/installation/kubernetes/ingress.yaml new file mode 100644 index 0000000..c8a2ad3 --- /dev/null +++ b/installation/kubernetes/ingress.yaml @@ -0,0 +1,22 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: whatsapp-ingress + namespace: default + annotations: + kubernetes.io/ingress.class: nginx + certmanager.k8s.io/cluster-issuer: letsencrypt-production + nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" +spec: + rules: + - host: your_host.example.com + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: whatsapp-web-service + port: + number: 443 +