Created
March 20, 2024 15:03
-
-
Save Klerith/0ae03ca27b37036e2be772d293f2afb4 to your computer and use it in GitHub Desktop.
Ingress Ymls - Client Gateway y WebHook
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/v1 | |
kind: Ingress | |
metadata: | |
name: tienda-ingress | |
spec: | |
rules: | |
- http: | |
paths: | |
- path: /* | |
pathType: ImplementationSpecific | |
backend: | |
service: | |
name: client-gateway | |
port: | |
number: 3000 | |
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/v1 | |
kind: Ingress | |
metadata: | |
name: payments-webhook-ingress | |
spec: | |
rules: | |
- http: | |
paths: | |
- path: /* | |
pathType: ImplementationSpecific | |
backend: | |
service: | |
name: payments-webhook | |
port: | |
number: 3000 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment