Created
August 21, 2020 04:14
-
-
Save mikesparr/f5d3746bf66e62317bf0fe9f98774e61 to your computer and use it in GitHub Desktop.
Kustomize overlay patch example
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: extensions/v1beta1 # networking.k8s.io/v1beta1 | |
kind: Ingress | |
metadata: | |
name: demo-app-msparr-com | |
spec: | |
# tls: | |
# - secretName: tls-demo-app-msparr-com | |
# hosts: | |
# - demo-app.msparr.com | |
rules: | |
- host: demo-app-review.msparr.com # overrides Ingress host so deploys to different URL | |
http: | |
paths: | |
- path: / | |
backend: | |
serviceName: demo-app | |
servicePort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment