Created
June 30, 2021 09:37
-
-
Save JaniKibichi/19a58a654f35eeda11f90bcb8c5e9954 to your computer and use it in GitHub Desktop.
Ingress for ussd
This file contains 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: ussd-ingress | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
spec: | |
rules: | |
- host: "utility.ussd.janikibichi.com" | |
http: | |
paths: | |
- path: "/" | |
backend: | |
serviceName: ussd-service | |
servicePort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment