-
Notifications
You must be signed in to change notification settings - Fork 109
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
Improve demo #9
Improve demo #9
Conversation
examples/color.yaml
Outdated
@@ -81,17 +112,18 @@ spec: | |||
prefix: / | |||
action: | |||
weightedTargets: | |||
- virtualNodeName: colorteller-vn | |||
- virtualNodeName: colorteller |
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.
The namespace prefix -appmesh-demo
is missing from all virtual nodes.
--- | ||
apiVersion: appmesh.k8s.aws/v1alpha1 | ||
kind: VirtualService | ||
metadata: | ||
name: colorteller.default.svc.cluster.local | ||
name: colorteller.appmesh-demo.svc.cluster.local | ||
namespace: appmesh-demo | ||
spec: | ||
meshName: color-mesh | ||
virtualRouter: |
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.
The virtual router name and the route name should follow the namespace prefix convention.
examples/color.yaml
Outdated
name: appmesh-demo | ||
spec: | ||
finalizers: | ||
- kubernetes |
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.
The kubernetes finalizer can be removed.
* Use non-default namespace * Integrate with inject (now requires inject to be deployed for demo) * Add namespace suffix convention to virtual node, router and route names.
Addressed @stefanprodan's comments. |
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.