You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VirtualService Defines rules that control how requests for service are routed within service mesh
DestinationRule Configures set of policies to be applied to request after VirtualService routing occurs
ServiceEntry Enables requests to services outside service mesh
Gateway Configures load balancer operating at edge of mesh for:
• HTTP/TCP ingress traffic to mesh application
• Egress traffic to external services
Sidecar Configures sidecar proxies attached to application workloads running inside mesh
RedHat OpenShift Service Mesh Demo (Dynamic Routing and Blue/Green Deployments)
export GATEWAY_URL=$(oc -n istio-system get route istio-ingressgateway -o jsonpath='{.spec.host}')
for i in $(seq 50) ; do curl $GATEWAY_URL; sleep 1 ; done
View catalog deployment
oc describe service catalog -n $OCP_TUTORIAL_PROJECT | grep Selector
oc get deploy catalog-v1 -o json -n $OCP_TUTORIAL_PROJECT | jq .spec.template.metadata.labels