Created
June 29, 2021 15:53
-
-
Save JaniKibichi/178b7d1c7dbf08b0faca0b7a10a9f7f3 to your computer and use it in GitHub Desktop.
Initial Ingress
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 | |
spec: | |
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