Created
June 29, 2021 16:00
-
-
Save JaniKibichi/0de827f495412f0fe6b66021e76418ed to your computer and use it in GitHub Desktop.
Ingress Update
This file contains hidden or 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/v1beta1 | |
kind: Ingress | |
metadata: | |
name: bboxx-ingress | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
cert-manager.io/cluster-issuer: letsencrypt-prod | |
spec: | |
tls: | |
- hosts: | |
- payments.bboxx.clients.decoded.africa | |
secretName: hello-kubernetes-tls | |
rules: | |
- host: "payments.bboxx.clients.decoded.africa" | |
http: | |
paths: | |
- path: "/" | |
backend: | |
serviceName: bboxx-service | |
servicePort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment