Created
August 3, 2020 22:53
-
-
Save ricardozanini/3ddf7173a5946fe13698ac9cb8f68cfd 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
$ cat <<EOF | kubectl -n kogito apply -f - | |
apiVersion: networking.k8s.io/v1beta1 | |
kind: Ingress | |
metadata: | |
name: process-business-rules-quarkus | |
annotations: | |
nginx.ingress.kubernetes.io/rewrite-target: / | |
spec: | |
rules: | |
- host: kogito-example.com | |
http: | |
paths: | |
- path: / | |
backend: | |
serviceName: process-business-rules-quarkus | |
servicePort: 8080 | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment