├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Section-1 ├── README.md ├── images │ ├── istio-architecture.png │ └── istio-glossary.png ├── kubernetes │ ├── nginx-app-istio-gateway.yaml │ ├── nginx-app-istio-virtual-service.yaml │ └── nginx-app.yaml ├── video-1.2.md ├── video-1.3.md ├── video-1.4.md ├── video-1.5.md └── video-1.6.md ├── Section-2 ├── README.md ├── kubernetes │ ├── hello-istio-0-100.yaml │ ├── hello-istio-100-0.yaml │ ├── hello-istio-25-75.yaml │ ├── hello-istio-50-50.yaml │ ├── hello-istio-75-25.yaml │ ├── hello-istio-destination.yaml │ ├── hello-istio-egress.yaml │ ├── hello-istio-gateway.yaml │ ├── hello-istio-uri-match.yaml │ ├── hello-istio-user-agent.yaml │ ├── hello-istio-user-cookie.yaml │ ├── hello-istio-v1.yaml │ ├── hello-istio-v2.yaml │ ├── hello-istio-virtual-service.yaml │ └── hello-istio.yaml ├── services │ ├── hello-istio-golang-v1 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ └── hello-istio-golang-v2 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go ├── video-2.1.md ├── video-2.2.md ├── video-2.3.md ├── video-2.4.md └── video-2.5.md ├── Section-3 ├── README.md ├── kubernetes │ ├── hello-istio-circuit-breaker.yaml │ ├── hello-istio-connection-pool.yaml │ ├── hello-istio-destination.yaml │ ├── hello-istio-gateway.yaml │ ├── hello-istio-retries.yaml │ ├── hello-istio-v1.yaml │ ├── hello-istio-v2.yaml │ ├── hello-istio-virtual-service.yaml │ ├── hello-istio.yaml │ ├── hello-message-connection-pool.yaml │ ├── hello-message-destination.yaml │ ├── hello-message-retries.yaml │ ├── hello-message-virtual-service.yaml │ ├── hello-rate-limit-client.yaml │ └── hello-rate-limit-mixer.yaml ├── services │ ├── hello-istio-golang-v1 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ ├── hello-istio-golang-v2 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ └── hello-message-golang-v1 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go ├── video-3.1.md ├── video-3.2.md ├── video-3.3.md ├── video-3.4.md └── video-3.5.md ├── Section-4 ├── README.md ├── kubernetes │ ├── hello-istio-destination.yaml │ ├── hello-istio-gateway.yaml │ ├── hello-istio-v1.yaml │ ├── hello-istio.yaml │ ├── hello-message-destination.yaml │ ├── hello-message-v1-abort.yaml │ ├── hello-message-v1-delay.yaml │ ├── hello-message-v1-filter.yaml │ ├── hello-message-v2-mirroring.yaml │ └── hello-message-virtual-service.yaml ├── services │ ├── hello-istio-golang-v1 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ ├── hello-istio-golang-v2 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ ├── hello-message-golang-v1 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ └── hello-message-golang-v2 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go ├── video-4.1.md ├── video-4.2.md ├── video-4.3.md └── video-4.4.md ├── Section-5 ├── README.md ├── data │ ├── .gitignore │ ├── jwks.json │ ├── key.pem │ └── packtpub.jwt ├── kubernetes │ ├── demo │ │ ├── hello-istio-destination.yaml │ │ ├── hello-istio-gateway.yaml │ │ ├── hello-istio-virtual-service.yaml │ │ ├── hello-istio.yaml │ │ ├── hello-message-destination.yaml │ │ └── hello-message-virtual-service.yaml │ ├── hello-istio-gateway-policy-allow.yaml │ ├── hello-istio-gateway-policy-deny.yaml │ ├── hello-istio-insecure.yaml │ ├── hello-istio-jwt-authz.yaml │ ├── hello-istio-mtls-annotations.yaml │ ├── hello-istio-mtls-ports.yaml │ ├── hello-istio-secure.yaml │ ├── hello-istio-strict-mtls.yaml │ └── hello-message-http-policy.yaml ├── services │ ├── hello-istio-golang-v1 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ ├── hello-istio-golang-v2 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ ├── hello-message-golang-v1 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go │ └── hello-message-golang-v2 │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── go.mod │ │ └── main.go ├── video-5.2.md ├── video-5.3.md ├── video-5.4.md ├── video-5.5.md └── video-5.6.md └── Section-6 ├── README.md ├── kubernetes ├── hello-istio-destination.yaml ├── hello-istio-gateway.yaml ├── hello-istio-virtual-service.yaml ├── hello-istio.yaml ├── hello-message-destination.yaml └── hello-message-virtual-service.yaml ├── services ├── hello-istio-golang-v1 │ ├── Dockerfile │ ├── Makefile │ ├── go.mod │ └── main.go └── hello-istio-golang-v2 │ ├── Dockerfile │ ├── Makefile │ ├── go.mod │ └── main.go ├── video-6.2.md ├── video-6.3.md ├── video-6.4.md ├── video-6.5.md └── video-6.6.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/README.md -------------------------------------------------------------------------------- /Section-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/README.md -------------------------------------------------------------------------------- /Section-1/images/istio-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/images/istio-architecture.png -------------------------------------------------------------------------------- /Section-1/images/istio-glossary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/images/istio-glossary.png -------------------------------------------------------------------------------- /Section-1/kubernetes/nginx-app-istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/kubernetes/nginx-app-istio-gateway.yaml -------------------------------------------------------------------------------- /Section-1/kubernetes/nginx-app-istio-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/kubernetes/nginx-app-istio-virtual-service.yaml -------------------------------------------------------------------------------- /Section-1/kubernetes/nginx-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/kubernetes/nginx-app.yaml -------------------------------------------------------------------------------- /Section-1/video-1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/video-1.2.md -------------------------------------------------------------------------------- /Section-1/video-1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/video-1.3.md -------------------------------------------------------------------------------- /Section-1/video-1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/video-1.4.md -------------------------------------------------------------------------------- /Section-1/video-1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/video-1.5.md -------------------------------------------------------------------------------- /Section-1/video-1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-1/video-1.6.md -------------------------------------------------------------------------------- /Section-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/README.md -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-0-100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-0-100.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-100-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-100-0.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-25-75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-25-75.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-50-50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-50-50.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-75-25.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-75-25.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-destination.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-egress.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-gateway.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-uri-match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-uri-match.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-user-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-user-agent.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-user-cookie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-user-cookie.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-v1.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-v2.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio-virtual-service.yaml -------------------------------------------------------------------------------- /Section-2/kubernetes/hello-istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/kubernetes/hello-istio.yaml -------------------------------------------------------------------------------- /Section-2/services/hello-istio-golang-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/services/hello-istio-golang-v1/Dockerfile -------------------------------------------------------------------------------- /Section-2/services/hello-istio-golang-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/services/hello-istio-golang-v1/Makefile -------------------------------------------------------------------------------- /Section-2/services/hello-istio-golang-v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/services/hello-istio-golang-v1/go.mod -------------------------------------------------------------------------------- /Section-2/services/hello-istio-golang-v1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/services/hello-istio-golang-v1/main.go -------------------------------------------------------------------------------- /Section-2/services/hello-istio-golang-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/services/hello-istio-golang-v2/Dockerfile -------------------------------------------------------------------------------- /Section-2/services/hello-istio-golang-v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/services/hello-istio-golang-v2/Makefile -------------------------------------------------------------------------------- /Section-2/services/hello-istio-golang-v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/services/hello-istio-golang-v2/go.mod -------------------------------------------------------------------------------- /Section-2/services/hello-istio-golang-v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/services/hello-istio-golang-v2/main.go -------------------------------------------------------------------------------- /Section-2/video-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/video-2.1.md -------------------------------------------------------------------------------- /Section-2/video-2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/video-2.2.md -------------------------------------------------------------------------------- /Section-2/video-2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/video-2.3.md -------------------------------------------------------------------------------- /Section-2/video-2.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/video-2.4.md -------------------------------------------------------------------------------- /Section-2/video-2.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-2/video-2.5.md -------------------------------------------------------------------------------- /Section-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/README.md -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio-circuit-breaker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio-circuit-breaker.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio-connection-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio-connection-pool.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio-destination.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio-gateway.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio-retries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio-retries.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio-v1.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio-v2.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio-virtual-service.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-istio.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-message-connection-pool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-message-connection-pool.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-message-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-message-destination.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-message-retries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-message-retries.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-message-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-message-virtual-service.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-rate-limit-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-rate-limit-client.yaml -------------------------------------------------------------------------------- /Section-3/kubernetes/hello-rate-limit-mixer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/kubernetes/hello-rate-limit-mixer.yaml -------------------------------------------------------------------------------- /Section-3/services/hello-istio-golang-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-istio-golang-v1/Dockerfile -------------------------------------------------------------------------------- /Section-3/services/hello-istio-golang-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-istio-golang-v1/Makefile -------------------------------------------------------------------------------- /Section-3/services/hello-istio-golang-v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-istio-golang-v1/go.mod -------------------------------------------------------------------------------- /Section-3/services/hello-istio-golang-v1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-istio-golang-v1/main.go -------------------------------------------------------------------------------- /Section-3/services/hello-istio-golang-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-istio-golang-v2/Dockerfile -------------------------------------------------------------------------------- /Section-3/services/hello-istio-golang-v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-istio-golang-v2/Makefile -------------------------------------------------------------------------------- /Section-3/services/hello-istio-golang-v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-istio-golang-v2/go.mod -------------------------------------------------------------------------------- /Section-3/services/hello-istio-golang-v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-istio-golang-v2/main.go -------------------------------------------------------------------------------- /Section-3/services/hello-message-golang-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-message-golang-v1/Dockerfile -------------------------------------------------------------------------------- /Section-3/services/hello-message-golang-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-message-golang-v1/Makefile -------------------------------------------------------------------------------- /Section-3/services/hello-message-golang-v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-message-golang-v1/go.mod -------------------------------------------------------------------------------- /Section-3/services/hello-message-golang-v1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/services/hello-message-golang-v1/main.go -------------------------------------------------------------------------------- /Section-3/video-3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/video-3.1.md -------------------------------------------------------------------------------- /Section-3/video-3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/video-3.2.md -------------------------------------------------------------------------------- /Section-3/video-3.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/video-3.3.md -------------------------------------------------------------------------------- /Section-3/video-3.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/video-3.4.md -------------------------------------------------------------------------------- /Section-3/video-3.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-3/video-3.5.md -------------------------------------------------------------------------------- /Section-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/README.md -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-istio-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-istio-destination.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-istio-gateway.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-istio-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-istio-v1.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-istio.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-message-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-message-destination.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-message-v1-abort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-message-v1-abort.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-message-v1-delay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-message-v1-delay.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-message-v1-filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-message-v1-filter.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-message-v2-mirroring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-message-v2-mirroring.yaml -------------------------------------------------------------------------------- /Section-4/kubernetes/hello-message-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/kubernetes/hello-message-virtual-service.yaml -------------------------------------------------------------------------------- /Section-4/services/hello-istio-golang-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-istio-golang-v1/Dockerfile -------------------------------------------------------------------------------- /Section-4/services/hello-istio-golang-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-istio-golang-v1/Makefile -------------------------------------------------------------------------------- /Section-4/services/hello-istio-golang-v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-istio-golang-v1/go.mod -------------------------------------------------------------------------------- /Section-4/services/hello-istio-golang-v1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-istio-golang-v1/main.go -------------------------------------------------------------------------------- /Section-4/services/hello-istio-golang-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-istio-golang-v2/Dockerfile -------------------------------------------------------------------------------- /Section-4/services/hello-istio-golang-v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-istio-golang-v2/Makefile -------------------------------------------------------------------------------- /Section-4/services/hello-istio-golang-v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-istio-golang-v2/go.mod -------------------------------------------------------------------------------- /Section-4/services/hello-istio-golang-v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-istio-golang-v2/main.go -------------------------------------------------------------------------------- /Section-4/services/hello-message-golang-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-message-golang-v1/Dockerfile -------------------------------------------------------------------------------- /Section-4/services/hello-message-golang-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-message-golang-v1/Makefile -------------------------------------------------------------------------------- /Section-4/services/hello-message-golang-v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-message-golang-v1/go.mod -------------------------------------------------------------------------------- /Section-4/services/hello-message-golang-v1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-message-golang-v1/main.go -------------------------------------------------------------------------------- /Section-4/services/hello-message-golang-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-message-golang-v2/Dockerfile -------------------------------------------------------------------------------- /Section-4/services/hello-message-golang-v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-message-golang-v2/Makefile -------------------------------------------------------------------------------- /Section-4/services/hello-message-golang-v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-message-golang-v2/go.mod -------------------------------------------------------------------------------- /Section-4/services/hello-message-golang-v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/services/hello-message-golang-v2/main.go -------------------------------------------------------------------------------- /Section-4/video-4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/video-4.1.md -------------------------------------------------------------------------------- /Section-4/video-4.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/video-4.2.md -------------------------------------------------------------------------------- /Section-4/video-4.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/video-4.3.md -------------------------------------------------------------------------------- /Section-4/video-4.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-4/video-4.4.md -------------------------------------------------------------------------------- /Section-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/README.md -------------------------------------------------------------------------------- /Section-5/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.py -------------------------------------------------------------------------------- /Section-5/data/jwks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/data/jwks.json -------------------------------------------------------------------------------- /Section-5/data/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/data/key.pem -------------------------------------------------------------------------------- /Section-5/data/packtpub.jwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/data/packtpub.jwt -------------------------------------------------------------------------------- /Section-5/kubernetes/demo/hello-istio-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/demo/hello-istio-destination.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/demo/hello-istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/demo/hello-istio-gateway.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/demo/hello-istio-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/demo/hello-istio-virtual-service.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/demo/hello-istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/demo/hello-istio.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/demo/hello-message-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/demo/hello-message-destination.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/demo/hello-message-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/demo/hello-message-virtual-service.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-istio-gateway-policy-allow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-istio-gateway-policy-allow.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-istio-gateway-policy-deny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-istio-gateway-policy-deny.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-istio-insecure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-istio-insecure.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-istio-jwt-authz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-istio-jwt-authz.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-istio-mtls-annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-istio-mtls-annotations.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-istio-mtls-ports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-istio-mtls-ports.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-istio-secure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-istio-secure.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-istio-strict-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-istio-strict-mtls.yaml -------------------------------------------------------------------------------- /Section-5/kubernetes/hello-message-http-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/kubernetes/hello-message-http-policy.yaml -------------------------------------------------------------------------------- /Section-5/services/hello-istio-golang-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-istio-golang-v1/Dockerfile -------------------------------------------------------------------------------- /Section-5/services/hello-istio-golang-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-istio-golang-v1/Makefile -------------------------------------------------------------------------------- /Section-5/services/hello-istio-golang-v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-istio-golang-v1/go.mod -------------------------------------------------------------------------------- /Section-5/services/hello-istio-golang-v1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-istio-golang-v1/main.go -------------------------------------------------------------------------------- /Section-5/services/hello-istio-golang-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-istio-golang-v2/Dockerfile -------------------------------------------------------------------------------- /Section-5/services/hello-istio-golang-v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-istio-golang-v2/Makefile -------------------------------------------------------------------------------- /Section-5/services/hello-istio-golang-v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-istio-golang-v2/go.mod -------------------------------------------------------------------------------- /Section-5/services/hello-istio-golang-v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-istio-golang-v2/main.go -------------------------------------------------------------------------------- /Section-5/services/hello-message-golang-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-message-golang-v1/Dockerfile -------------------------------------------------------------------------------- /Section-5/services/hello-message-golang-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-message-golang-v1/Makefile -------------------------------------------------------------------------------- /Section-5/services/hello-message-golang-v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-message-golang-v1/go.mod -------------------------------------------------------------------------------- /Section-5/services/hello-message-golang-v1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-message-golang-v1/main.go -------------------------------------------------------------------------------- /Section-5/services/hello-message-golang-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-message-golang-v2/Dockerfile -------------------------------------------------------------------------------- /Section-5/services/hello-message-golang-v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-message-golang-v2/Makefile -------------------------------------------------------------------------------- /Section-5/services/hello-message-golang-v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-message-golang-v2/go.mod -------------------------------------------------------------------------------- /Section-5/services/hello-message-golang-v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/services/hello-message-golang-v2/main.go -------------------------------------------------------------------------------- /Section-5/video-5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/video-5.2.md -------------------------------------------------------------------------------- /Section-5/video-5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/video-5.3.md -------------------------------------------------------------------------------- /Section-5/video-5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/video-5.4.md -------------------------------------------------------------------------------- /Section-5/video-5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/video-5.5.md -------------------------------------------------------------------------------- /Section-5/video-5.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-5/video-5.6.md -------------------------------------------------------------------------------- /Section-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/README.md -------------------------------------------------------------------------------- /Section-6/kubernetes/hello-istio-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/kubernetes/hello-istio-destination.yaml -------------------------------------------------------------------------------- /Section-6/kubernetes/hello-istio-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/kubernetes/hello-istio-gateway.yaml -------------------------------------------------------------------------------- /Section-6/kubernetes/hello-istio-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/kubernetes/hello-istio-virtual-service.yaml -------------------------------------------------------------------------------- /Section-6/kubernetes/hello-istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/kubernetes/hello-istio.yaml -------------------------------------------------------------------------------- /Section-6/kubernetes/hello-message-destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/kubernetes/hello-message-destination.yaml -------------------------------------------------------------------------------- /Section-6/kubernetes/hello-message-virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/kubernetes/hello-message-virtual-service.yaml -------------------------------------------------------------------------------- /Section-6/services/hello-istio-golang-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/services/hello-istio-golang-v1/Dockerfile -------------------------------------------------------------------------------- /Section-6/services/hello-istio-golang-v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/services/hello-istio-golang-v1/Makefile -------------------------------------------------------------------------------- /Section-6/services/hello-istio-golang-v1/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/services/hello-istio-golang-v1/go.mod -------------------------------------------------------------------------------- /Section-6/services/hello-istio-golang-v1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/services/hello-istio-golang-v1/main.go -------------------------------------------------------------------------------- /Section-6/services/hello-istio-golang-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/services/hello-istio-golang-v2/Dockerfile -------------------------------------------------------------------------------- /Section-6/services/hello-istio-golang-v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/services/hello-istio-golang-v2/Makefile -------------------------------------------------------------------------------- /Section-6/services/hello-istio-golang-v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/services/hello-istio-golang-v2/go.mod -------------------------------------------------------------------------------- /Section-6/services/hello-istio-golang-v2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/services/hello-istio-golang-v2/main.go -------------------------------------------------------------------------------- /Section-6/video-6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/video-6.2.md -------------------------------------------------------------------------------- /Section-6/video-6.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/video-6.3.md -------------------------------------------------------------------------------- /Section-6/video-6.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/video-6.4.md -------------------------------------------------------------------------------- /Section-6/video-6.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/video-6.5.md -------------------------------------------------------------------------------- /Section-6/video-6.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Kubernetes-Service-Mesh-with-Istio/HEAD/Section-6/video-6.6.md --------------------------------------------------------------------------------