-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Helm chart webapp #1
base: master
Are you sure you want to change the base?
Conversation
fieldRef: | ||
fieldPath: metadata.namespace | ||
- name: CATALOG_SERVICE_HOST | ||
value: catalog.istioinaction |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be,
name: CATALOG_SERVICE_HOST
value: catalog.$(KUBERNETES_NAMESPACE)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
- name: CATALOG_SERVICE_PORT | ||
value: "80" | ||
- name: FORUM_SERVICE_HOST | ||
value: forum.istioinaction |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be,
- name: FORUM_SERVICE_HOST
value: forum.$(KUBERNETES_NAMESPACE)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, add one more resource under templates,
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: coolstore-gateway
spec:
selector:
istio: ingressgateway # use istio default controller
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:- "webapp.istioinaction.io"
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: webapp-virtualservice
spec:
hosts:
- "webapp.istioinaction.io"
gateways: - coolstore-gateway
http: - route:
- destination:
host: webapp
port:
number: 80
- destination:
No description provided.