Created
March 5, 2021 05:46
-
-
Save rajitha1998/58cfc11913079c0596cb60030ee09649 to your computer and use it in GitHub Desktop.
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
{{- if .Values.createIngress }} | |
apiVersion: networking.k8s.io/v1beta1 | |
kind: Ingress | |
metadata: | |
name: oscar | |
annotations: | |
# nginx.ingress.kubernetes.io/rewrite-target: / | |
kubernetes.io/ingress.class: nginx | |
spec: | |
rules: | |
- host: xxx.xxx.tech | |
http: | |
paths: | |
- backend: | |
serviceName: oscar | |
servicePort: 8080 | |
- host: xxx.xxx.tech | |
http: | |
paths: | |
- backend: | |
serviceName: minio | |
servicePort: 9000 | |
{{- end }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment