├── Ambient ├── README.md ├── addon-gateways │ └── kiali-gateway ├── demoapp-l7-authorizationpolicy.yaml └── fronten-gateway-api.yaml ├── LICENSE ├── Muliti-Cluster-demo ├── README.md ├── cluster1 │ ├── 01-deploy-demoapp-v10.yaml │ ├── 02-service-demoapp.yaml │ ├── 03-destinationrule-demoapp.yaml │ └── 04-virutalservice-demoapp.yaml └── cluster2 │ ├── 01-deploy-demoapp-v11.yaml │ ├── 02-service-demoapp.yaml │ ├── 03-destinationrule-demoapp.yaml │ └── 04-virutalservice-demoapp.yaml ├── Observability ├── Logging │ ├── README.md │ ├── demo-profile.yaml │ ├── disable-demoapp-logging.yaml │ ├── disable-frontend-logging.yaml │ ├── filter-client-logging.yaml │ └── mesh-logging-default.yaml ├── Metrics │ ├── proxy-level │ │ ├── demo.yaml │ │ ├── pod-patch-annotations.yaml │ │ └── pod-with-stats-annotations.yaml │ └── service-level │ │ ├── mesh-metrics.yaml │ │ ├── namespace-metrics.yaml │ │ └── workload-metrics.yaml ├── Tracing │ ├── demo-profile-skywalking.yaml │ ├── demo-profile-zipkin.yaml │ └── mesh-tracing-default.yaml └── manifests │ └── demo-profile.yaml ├── README.md ├── Security ├── 01-PeerAuthentication-Policy-Basics │ ├── 01-namespace-default-peerauthn.yaml │ ├── 02-demoapp-peerauthn.yaml │ └── 03-destinationrule-demoapp-mtls.yaml ├── 02-PeerAuthentication-Disable │ ├── 01-namespace-default-peerauthn.yaml │ ├── 02-demoapp-peerauthn.yaml │ └── 03-destinationrule-demoapp-mtls.yaml ├── 03-Ingress-Gateway-TLS │ ├── README.md │ ├── bookinfo-productpage │ │ ├── bookinfo-gateway.yaml │ │ └── bookinfo-virtualservice.yaml │ ├── certs │ │ ├── bookinfo.magedu.com.crt │ │ ├── bookinfo.magedu.com.csr │ │ ├── bookinfo.magedu.com.key │ │ ├── fe.magedu.com.crt │ │ ├── fe.magedu.com.csr │ │ ├── fe.magedu.com.key │ │ ├── grafana.magedu.com.crt │ │ ├── grafana.magedu.com.csr │ │ ├── grafana.magedu.com.key │ │ ├── kiali.magedu.com.crt │ │ ├── kiali.magedu.com.csr │ │ ├── kiali.magedu.com.key │ │ ├── magedu.com.crt │ │ ├── magedu.com.key │ │ ├── prometheus.magedu.com.crt │ │ ├── prometheus.magedu.com.csr │ │ └── prometheus.magedu.com.key │ ├── frontend │ │ ├── gateway-frontend.yaml │ │ └── virtualservice-frontend.yaml │ ├── grafana │ │ ├── grafana-gateway.yaml │ │ └── grafana-virtualservice.yaml │ ├── kiali │ │ ├── kiali-gateway.yaml │ │ └── kiali-virtualservice.yaml │ ├── prometheus │ │ ├── prometheus-gateway.yaml │ │ └── prometheus-virtualservice.yaml │ └── tracing │ │ ├── tracing-gateway.yaml │ │ └── tracing-virtualservice.yaml ├── 04-RequestAuthn-and-AuthzPolicy │ ├── 01-peerauthentication.yaml │ ├── 02-requestauthn-policy.yaml │ ├── 03-request-and-peer-authn-policy.yaml │ ├── README.md │ └── keycloak │ │ ├── README.md │ │ ├── deploy │ │ ├── keycloak-values.yaml │ │ └── postgresql-values.yaml │ │ └── istio │ │ ├── keycloak-destinationrule.yaml │ │ ├── keycloak-gateway.yaml │ │ └── keycloak-virtualservice.yaml └── 05-JWT-and-Keycloak │ ├── 01-deploy-oauth2.yaml │ ├── 02-istio-operator-update.yaml │ ├── 03-ext-auth-ingress-gateway.yaml │ ├── 04-routeconfig-for-services │ ├── bookinfo │ │ ├── bookinfo-gateway.yaml │ │ └── bookinfo-virtualservice.yaml │ ├── fe-proxy │ │ ├── gateway-proxy.yaml │ │ └── virtualservice-proxy.yaml │ ├── grafana │ │ ├── grafana-gateway.yaml │ │ └── grafana-virtualservice.yaml │ ├── kiali │ │ ├── kiali-gateway.yaml │ │ └── kiali-virtualservice.yaml │ └── prometheus │ │ ├── prometheus-gateway.yaml │ │ └── prometheus-virtualservice.yaml │ ├── 05-ingress-gateway-authz.yaml │ ├── 06-authz-gateway-authz.yaml │ ├── README.md │ └── others │ ├── 06-authz-gateway-kiali.yaml │ ├── 07-authz-gateway-prometheus.yaml │ └── 08-authz-fe-proxy.yaml ├── ServiceEntry-and-WorkloadEntry ├── 00-Deploy-Client │ ├── 01-deployment-client.yaml │ └── 02-service-client.yaml ├── 01-Service-Entry │ ├── 01-serviceentry-nginx.yaml │ ├── 02-destinationrule-nginx.yaml │ ├── 03-virtualservice-nginx.yaml │ └── README.md ├── 02-Workload-Entry │ ├── 01-workloadentry-nginx.yaml │ ├── 02-serviceentry-nginx.yaml │ ├── 03-destinationrule-nginx.yaml │ └── 04-virtualservice-nginx.yaml ├── 03-WorkloadEntry-Subsets │ ├── 01-workloadentry-nginx.yaml │ ├── 02-serviceentry-nginx.yaml │ ├── 03-destinationrule-subsets.yaml │ ├── 04-virtualservice-weighted-based-routing.yaml │ ├── 05-virtualservice-headers-based-routing.yaml │ └── README.md ├── 04-Egress-Gateway │ ├── 01-workloadentry-nginx.yaml │ ├── 02-serviceentry-nginx.yaml │ ├── 03-destinationrule-subsets.yaml │ ├── 04-gateway-egress.yaml │ ├── 05-virtualservice-weighted-based-routing.yaml │ └── README.md ├── Deploy-Nginx │ ├── docker-compose.yml │ └── html │ │ ├── nginx2501 │ │ └── index.html │ │ ├── nginx2502 │ │ └── index.html │ │ └── nginx2601 │ │ └── index.html └── README.md └── Traffic-Management-Basics ├── grafana ├── grafana-destinationrule.yaml ├── grafana-gateway.yaml └── grafana-virtualservice.yaml ├── kiali-port-20001 ├── kiali-destinationrule.yaml ├── kiali-gateway.yaml └── kiali-virtualservice.yaml ├── kiali ├── kiali-destinationrule.yaml ├── kiali-gateway.yaml └── kiali-virtualservice.yaml ├── kube-ingresses ├── grafana-ingress.yaml └── kiali-ingress.yaml ├── ms-demo ├── 00-deploy-client │ ├── 01-deployment-client.yaml │ └── 02-service-client.yaml ├── 01-demoapp-deployment │ ├── deploy-demoapp.yaml │ └── deploy-frontend.yaml ├── 02-demoapp-subset │ ├── deploy-demoapp-canary.yaml │ ├── destinationrule-demoapp.yaml │ └── virtualservice-demoapp.yaml ├── 03-frontend-gateway │ ├── destinationrule-frontend.yaml │ ├── gateway-frontend.yaml │ └── virtualservice-frontend.yaml ├── 04-url-redirect-and-rewrite │ ├── virtualservice-demoapp.yaml │ └── virtualservice-frontend.yaml ├── 05-weight-based-routing │ └── virtualservice-demoapp.yaml ├── 06-headers-operation │ └── virtualservice-demoapp.yaml ├── 07-fault-injection │ ├── README.md │ └── virtualservice-demoapp.yaml ├── 08-http-retry │ ├── virtualservice-demoapp.yaml │ └── virtualservice-frontend.yaml ├── 09-traffic-mirror │ └── virtualservice-demoapp.yaml ├── 10-cluster-loadbalancing │ ├── destinationrule-demoapp.yaml │ ├── virtualservice-demoapp.yaml │ └── virtualservice-frontend.yaml ├── 11-connection-pool │ ├── destinationrule-demoapp.yaml │ ├── virtualservice-demoapp.yaml │ └── virtualservice-frontend.yaml ├── 12-outlier-detection │ ├── destinationrule-demoapp.yaml │ ├── virtualservice-demoapp.yaml │ └── virtualservice-frontend.yaml └── README.md ├── prometheus ├── prometheus-destinationrule.yaml ├── prometheus-gateway.yaml └── prometheus-virtualservice.yaml ├── sidecar-crd-demo ├── sleep-ns-default.yaml └── sleep-to-frontend.yaml ├── skywalking ├── skywalking-destinationrule.yaml ├── skywalking-gateway.yaml └── skywalking-virtualservice.yaml └── tracing ├── tracing-destinationrule.yaml ├── tracing-gateway.yaml └── tracing-virtualservice.yaml /Ambient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Ambient/README.md -------------------------------------------------------------------------------- /Ambient/addon-gateways/kiali-gateway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Ambient/addon-gateways/kiali-gateway -------------------------------------------------------------------------------- /Ambient/demoapp-l7-authorizationpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Ambient/demoapp-l7-authorizationpolicy.yaml -------------------------------------------------------------------------------- /Ambient/fronten-gateway-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Ambient/fronten-gateway-api.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/LICENSE -------------------------------------------------------------------------------- /Muliti-Cluster-demo/README.md: -------------------------------------------------------------------------------- 1 | # Multi Cluster Demo 2 | 3 | -------------------------------------------------------------------------------- /Muliti-Cluster-demo/cluster1/01-deploy-demoapp-v10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Muliti-Cluster-demo/cluster1/01-deploy-demoapp-v10.yaml -------------------------------------------------------------------------------- /Muliti-Cluster-demo/cluster1/02-service-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Muliti-Cluster-demo/cluster1/02-service-demoapp.yaml -------------------------------------------------------------------------------- /Muliti-Cluster-demo/cluster1/03-destinationrule-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Muliti-Cluster-demo/cluster1/03-destinationrule-demoapp.yaml -------------------------------------------------------------------------------- /Muliti-Cluster-demo/cluster1/04-virutalservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Muliti-Cluster-demo/cluster1/04-virutalservice-demoapp.yaml -------------------------------------------------------------------------------- /Muliti-Cluster-demo/cluster2/01-deploy-demoapp-v11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Muliti-Cluster-demo/cluster2/01-deploy-demoapp-v11.yaml -------------------------------------------------------------------------------- /Muliti-Cluster-demo/cluster2/02-service-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Muliti-Cluster-demo/cluster2/02-service-demoapp.yaml -------------------------------------------------------------------------------- /Muliti-Cluster-demo/cluster2/03-destinationrule-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Muliti-Cluster-demo/cluster2/03-destinationrule-demoapp.yaml -------------------------------------------------------------------------------- /Muliti-Cluster-demo/cluster2/04-virutalservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Muliti-Cluster-demo/cluster2/04-virutalservice-demoapp.yaml -------------------------------------------------------------------------------- /Observability/Logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Logging/README.md -------------------------------------------------------------------------------- /Observability/Logging/demo-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Logging/demo-profile.yaml -------------------------------------------------------------------------------- /Observability/Logging/disable-demoapp-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Logging/disable-demoapp-logging.yaml -------------------------------------------------------------------------------- /Observability/Logging/disable-frontend-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Logging/disable-frontend-logging.yaml -------------------------------------------------------------------------------- /Observability/Logging/filter-client-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Logging/filter-client-logging.yaml -------------------------------------------------------------------------------- /Observability/Logging/mesh-logging-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Logging/mesh-logging-default.yaml -------------------------------------------------------------------------------- /Observability/Metrics/proxy-level/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Metrics/proxy-level/demo.yaml -------------------------------------------------------------------------------- /Observability/Metrics/proxy-level/pod-patch-annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Metrics/proxy-level/pod-patch-annotations.yaml -------------------------------------------------------------------------------- /Observability/Metrics/proxy-level/pod-with-stats-annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Metrics/proxy-level/pod-with-stats-annotations.yaml -------------------------------------------------------------------------------- /Observability/Metrics/service-level/mesh-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Metrics/service-level/mesh-metrics.yaml -------------------------------------------------------------------------------- /Observability/Metrics/service-level/namespace-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Metrics/service-level/namespace-metrics.yaml -------------------------------------------------------------------------------- /Observability/Metrics/service-level/workload-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Metrics/service-level/workload-metrics.yaml -------------------------------------------------------------------------------- /Observability/Tracing/demo-profile-skywalking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Tracing/demo-profile-skywalking.yaml -------------------------------------------------------------------------------- /Observability/Tracing/demo-profile-zipkin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Tracing/demo-profile-zipkin.yaml -------------------------------------------------------------------------------- /Observability/Tracing/mesh-tracing-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/Tracing/mesh-tracing-default.yaml -------------------------------------------------------------------------------- /Observability/manifests/demo-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Observability/manifests/demo-profile.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/README.md -------------------------------------------------------------------------------- /Security/01-PeerAuthentication-Policy-Basics/01-namespace-default-peerauthn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/01-PeerAuthentication-Policy-Basics/01-namespace-default-peerauthn.yaml -------------------------------------------------------------------------------- /Security/01-PeerAuthentication-Policy-Basics/02-demoapp-peerauthn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/01-PeerAuthentication-Policy-Basics/02-demoapp-peerauthn.yaml -------------------------------------------------------------------------------- /Security/01-PeerAuthentication-Policy-Basics/03-destinationrule-demoapp-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/01-PeerAuthentication-Policy-Basics/03-destinationrule-demoapp-mtls.yaml -------------------------------------------------------------------------------- /Security/02-PeerAuthentication-Disable/01-namespace-default-peerauthn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/02-PeerAuthentication-Disable/01-namespace-default-peerauthn.yaml -------------------------------------------------------------------------------- /Security/02-PeerAuthentication-Disable/02-demoapp-peerauthn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/02-PeerAuthentication-Disable/02-demoapp-peerauthn.yaml -------------------------------------------------------------------------------- /Security/02-PeerAuthentication-Disable/03-destinationrule-demoapp-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/02-PeerAuthentication-Disable/03-destinationrule-demoapp-mtls.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/README.md -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/bookinfo-productpage/bookinfo-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/bookinfo-productpage/bookinfo-gateway.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/bookinfo-productpage/bookinfo-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/bookinfo-productpage/bookinfo-virtualservice.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/bookinfo.magedu.com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/bookinfo.magedu.com.crt -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/bookinfo.magedu.com.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/bookinfo.magedu.com.csr -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/bookinfo.magedu.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/bookinfo.magedu.com.key -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/fe.magedu.com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/fe.magedu.com.crt -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/fe.magedu.com.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/fe.magedu.com.csr -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/fe.magedu.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/fe.magedu.com.key -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/grafana.magedu.com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/grafana.magedu.com.crt -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/grafana.magedu.com.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/grafana.magedu.com.csr -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/grafana.magedu.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/grafana.magedu.com.key -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/kiali.magedu.com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/kiali.magedu.com.crt -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/kiali.magedu.com.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/kiali.magedu.com.csr -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/kiali.magedu.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/kiali.magedu.com.key -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/magedu.com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/magedu.com.crt -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/magedu.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/magedu.com.key -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/prometheus.magedu.com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/prometheus.magedu.com.crt -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/prometheus.magedu.com.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/prometheus.magedu.com.csr -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/certs/prometheus.magedu.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/certs/prometheus.magedu.com.key -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/frontend/gateway-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/frontend/gateway-frontend.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/frontend/virtualservice-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/frontend/virtualservice-frontend.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/grafana/grafana-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/grafana/grafana-gateway.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/grafana/grafana-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/grafana/grafana-virtualservice.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/kiali/kiali-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/kiali/kiali-gateway.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/kiali/kiali-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/kiali/kiali-virtualservice.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/prometheus/prometheus-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/prometheus/prometheus-gateway.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/prometheus/prometheus-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/prometheus/prometheus-virtualservice.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/tracing/tracing-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/tracing/tracing-gateway.yaml -------------------------------------------------------------------------------- /Security/03-Ingress-Gateway-TLS/tracing/tracing-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/03-Ingress-Gateway-TLS/tracing/tracing-virtualservice.yaml -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/01-peerauthentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/01-peerauthentication.yaml -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/02-requestauthn-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/02-requestauthn-policy.yaml -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/03-request-and-peer-authn-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/03-request-and-peer-authn-policy.yaml -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/README.md -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/keycloak/README.md -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/keycloak/deploy/keycloak-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/keycloak/deploy/keycloak-values.yaml -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/keycloak/deploy/postgresql-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/keycloak/deploy/postgresql-values.yaml -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/keycloak/istio/keycloak-destinationrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/keycloak/istio/keycloak-destinationrule.yaml -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/keycloak/istio/keycloak-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/keycloak/istio/keycloak-gateway.yaml -------------------------------------------------------------------------------- /Security/04-RequestAuthn-and-AuthzPolicy/keycloak/istio/keycloak-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/04-RequestAuthn-and-AuthzPolicy/keycloak/istio/keycloak-virtualservice.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/01-deploy-oauth2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/01-deploy-oauth2.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/02-istio-operator-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/02-istio-operator-update.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/03-ext-auth-ingress-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/03-ext-auth-ingress-gateway.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/bookinfo/bookinfo-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/bookinfo/bookinfo-gateway.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/bookinfo/bookinfo-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/bookinfo/bookinfo-virtualservice.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/fe-proxy/gateway-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/fe-proxy/gateway-proxy.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/fe-proxy/virtualservice-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/fe-proxy/virtualservice-proxy.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/grafana/grafana-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/grafana/grafana-gateway.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/grafana/grafana-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/grafana/grafana-virtualservice.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/kiali/kiali-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/kiali/kiali-gateway.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/kiali/kiali-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/kiali/kiali-virtualservice.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/prometheus/prometheus-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/prometheus/prometheus-gateway.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/04-routeconfig-for-services/prometheus/prometheus-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/04-routeconfig-for-services/prometheus/prometheus-virtualservice.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/05-ingress-gateway-authz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/05-ingress-gateway-authz.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/06-authz-gateway-authz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/06-authz-gateway-authz.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/README.md -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/others/06-authz-gateway-kiali.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/others/06-authz-gateway-kiali.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/others/07-authz-gateway-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/others/07-authz-gateway-prometheus.yaml -------------------------------------------------------------------------------- /Security/05-JWT-and-Keycloak/others/08-authz-fe-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Security/05-JWT-and-Keycloak/others/08-authz-fe-proxy.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/00-Deploy-Client/01-deployment-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/00-Deploy-Client/01-deployment-client.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/00-Deploy-Client/02-service-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/00-Deploy-Client/02-service-client.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/01-Service-Entry/01-serviceentry-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/01-Service-Entry/01-serviceentry-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/01-Service-Entry/02-destinationrule-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/01-Service-Entry/02-destinationrule-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/01-Service-Entry/03-virtualservice-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/01-Service-Entry/03-virtualservice-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/01-Service-Entry/README.md: -------------------------------------------------------------------------------- 1 | # Service Entry 2 | -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/02-Workload-Entry/01-workloadentry-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/02-Workload-Entry/01-workloadentry-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/02-Workload-Entry/02-serviceentry-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/02-Workload-Entry/02-serviceentry-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/02-Workload-Entry/03-destinationrule-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/02-Workload-Entry/03-destinationrule-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/02-Workload-Entry/04-virtualservice-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/02-Workload-Entry/04-virtualservice-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/01-workloadentry-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/01-workloadentry-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/02-serviceentry-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/02-serviceentry-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/03-destinationrule-subsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/03-destinationrule-subsets.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/04-virtualservice-weighted-based-routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/04-virtualservice-weighted-based-routing.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/05-virtualservice-headers-based-routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/05-virtualservice-headers-based-routing.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/03-WorkloadEntry-Subsets/README.md -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/01-workloadentry-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/01-workloadentry-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/02-serviceentry-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/02-serviceentry-nginx.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/03-destinationrule-subsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/03-destinationrule-subsets.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/04-gateway-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/04-gateway-egress.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/05-virtualservice-weighted-based-routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/05-virtualservice-weighted-based-routing.yaml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/04-Egress-Gateway/README.md -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/Deploy-Nginx/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/Deploy-Nginx/docker-compose.yml -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/Deploy-Nginx/html/nginx2501/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/Deploy-Nginx/html/nginx2501/index.html -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/Deploy-Nginx/html/nginx2502/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/Deploy-Nginx/html/nginx2502/index.html -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/Deploy-Nginx/html/nginx2601/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/Deploy-Nginx/html/nginx2601/index.html -------------------------------------------------------------------------------- /ServiceEntry-and-WorkloadEntry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/ServiceEntry-and-WorkloadEntry/README.md -------------------------------------------------------------------------------- /Traffic-Management-Basics/grafana/grafana-destinationrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/grafana/grafana-destinationrule.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/grafana/grafana-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/grafana/grafana-gateway.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/grafana/grafana-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/grafana/grafana-virtualservice.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/kiali-port-20001/kiali-destinationrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/kiali-port-20001/kiali-destinationrule.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/kiali-port-20001/kiali-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/kiali-port-20001/kiali-gateway.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/kiali-port-20001/kiali-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/kiali-port-20001/kiali-virtualservice.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/kiali/kiali-destinationrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/kiali/kiali-destinationrule.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/kiali/kiali-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/kiali/kiali-gateway.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/kiali/kiali-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/kiali/kiali-virtualservice.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/kube-ingresses/grafana-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/kube-ingresses/grafana-ingress.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/kube-ingresses/kiali-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/kube-ingresses/kiali-ingress.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/00-deploy-client/01-deployment-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/00-deploy-client/01-deployment-client.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/00-deploy-client/02-service-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/00-deploy-client/02-service-client.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/01-demoapp-deployment/deploy-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/01-demoapp-deployment/deploy-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/01-demoapp-deployment/deploy-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/01-demoapp-deployment/deploy-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/02-demoapp-subset/deploy-demoapp-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/02-demoapp-subset/deploy-demoapp-canary.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/02-demoapp-subset/destinationrule-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/02-demoapp-subset/destinationrule-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/02-demoapp-subset/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/02-demoapp-subset/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/03-frontend-gateway/destinationrule-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/03-frontend-gateway/destinationrule-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/03-frontend-gateway/gateway-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/03-frontend-gateway/gateway-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/03-frontend-gateway/virtualservice-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/03-frontend-gateway/virtualservice-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/04-url-redirect-and-rewrite/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/04-url-redirect-and-rewrite/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/04-url-redirect-and-rewrite/virtualservice-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/04-url-redirect-and-rewrite/virtualservice-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/05-weight-based-routing/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/05-weight-based-routing/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/06-headers-operation/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/06-headers-operation/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/07-fault-injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/07-fault-injection/README.md -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/07-fault-injection/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/07-fault-injection/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/08-http-retry/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/08-http-retry/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/08-http-retry/virtualservice-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/08-http-retry/virtualservice-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/09-traffic-mirror/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/09-traffic-mirror/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/10-cluster-loadbalancing/destinationrule-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/10-cluster-loadbalancing/destinationrule-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/10-cluster-loadbalancing/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/10-cluster-loadbalancing/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/10-cluster-loadbalancing/virtualservice-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/10-cluster-loadbalancing/virtualservice-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/11-connection-pool/destinationrule-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/11-connection-pool/destinationrule-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/11-connection-pool/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/11-connection-pool/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/11-connection-pool/virtualservice-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/11-connection-pool/virtualservice-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/12-outlier-detection/destinationrule-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/12-outlier-detection/destinationrule-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/12-outlier-detection/virtualservice-demoapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/12-outlier-detection/virtualservice-demoapp.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/12-outlier-detection/virtualservice-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/12-outlier-detection/virtualservice-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/ms-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/ms-demo/README.md -------------------------------------------------------------------------------- /Traffic-Management-Basics/prometheus/prometheus-destinationrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/prometheus/prometheus-destinationrule.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/prometheus/prometheus-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/prometheus/prometheus-gateway.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/prometheus/prometheus-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/prometheus/prometheus-virtualservice.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/sidecar-crd-demo/sleep-ns-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/sidecar-crd-demo/sleep-ns-default.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/sidecar-crd-demo/sleep-to-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/sidecar-crd-demo/sleep-to-frontend.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/skywalking/skywalking-destinationrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/skywalking/skywalking-destinationrule.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/skywalking/skywalking-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/skywalking/skywalking-gateway.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/skywalking/skywalking-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/skywalking/skywalking-virtualservice.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/tracing/tracing-destinationrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/tracing/tracing-destinationrule.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/tracing/tracing-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/tracing/tracing-gateway.yaml -------------------------------------------------------------------------------- /Traffic-Management-Basics/tracing/tracing-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iKubernetes/istio-in-practise/HEAD/Traffic-Management-Basics/tracing/tracing-virtualservice.yaml --------------------------------------------------------------------------------