├── .gitignore ├── chapter1 ├── app │ ├── back │ │ ├── Dockerfile │ │ ├── back.py │ │ └── requirements.txt │ ├── data │ │ ├── Dockerfile │ │ ├── import.sh │ │ └── mydatabase.sql │ ├── docker-compose.yml │ └── front │ │ ├── Dockerfile │ │ ├── front.py │ │ ├── requirements.txt │ │ └── templates │ │ ├── index.html │ │ └── layout.html └── app_v2 │ ├── back │ ├── Dockerfile │ ├── back.py │ └── requirements.txt │ ├── data │ ├── Dockerfile │ ├── import.sh │ └── mydatabase.sql │ ├── docker-compose.yml │ └── kompose_output │ ├── back-deployment.yaml │ ├── back-service.yaml │ ├── data-deployment.yaml │ └── myapp-networkpolicy.yaml ├── chapter10 ├── canary │ └── quotes │ │ ├── back_v1 │ │ ├── Dockerfile │ │ ├── back.py │ │ ├── back.yaml │ │ └── requirements.txt │ │ ├── back_v2 │ │ ├── Dockerfile │ │ ├── back.py │ │ ├── back.yaml │ │ └── requirements.txt │ │ ├── data.yaml │ │ ├── ingress.yaml │ │ └── service.yaml ├── ingress │ ├── back.yaml │ ├── data.yaml │ ├── ingress1.yaml │ └── ingress2.yaml ├── istio-1.4.2 │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── istioctl │ ├── install │ │ ├── README.md │ │ ├── consul │ │ │ ├── README.md │ │ │ └── consul_config │ │ │ │ ├── agent-loglevel.json │ │ │ │ ├── agent.json │ │ │ │ ├── disable_update_check.json │ │ │ │ └── server.json │ │ ├── gcp │ │ │ ├── README.md │ │ │ └── bootstrap │ │ │ │ └── gcp_envoy_bootstrap.json │ │ └── kubernetes │ │ │ ├── README.md │ │ │ ├── global-default-sidecar-scope.yaml │ │ │ ├── helm │ │ │ ├── README.md │ │ │ ├── helm-service-account.yaml │ │ │ ├── istio-cni │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ └── istio-cni.yaml │ │ │ │ ├── values.yaml │ │ │ │ └── values_gke.yaml │ │ │ ├── istio-init │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── files │ │ │ │ │ ├── crd-10.yaml │ │ │ │ │ ├── crd-11.yaml │ │ │ │ │ ├── crd-14.yaml │ │ │ │ │ ├── crd-certmanager-10.yaml │ │ │ │ │ └── crd-certmanager-11.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap-crd-10.yaml │ │ │ │ │ ├── configmap-crd-11.yaml │ │ │ │ │ ├── configmap-crd-14.yaml │ │ │ │ │ ├── configmap-crd-certmanager-10.yaml │ │ │ │ │ ├── configmap-crd-certmanager-11.yaml │ │ │ │ │ ├── job-crd-10.yaml │ │ │ │ │ ├── job-crd-11.yaml │ │ │ │ │ ├── job-crd-14.yaml │ │ │ │ │ ├── job-crd-certmanager-10.yaml │ │ │ │ │ ├── job-crd-certmanager-11.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ └── istio │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ ├── certmanager │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── issuer.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── rbac.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── galley │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── validatingwebhookconfiguration.yaml.tpl │ │ │ │ │ └── values.yaml │ │ │ │ ├── gateways │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── preconfigured.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebindings.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── grafana │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── citadel-dashboard.json │ │ │ │ │ │ ├── galley-dashboard.json │ │ │ │ │ │ ├── istio-mesh-dashboard.json │ │ │ │ │ │ ├── istio-performance-dashboard.json │ │ │ │ │ │ ├── istio-service-dashboard.json │ │ │ │ │ │ ├── istio-workload-dashboard.json │ │ │ │ │ │ ├── mixer-dashboard.json │ │ │ │ │ │ └── pilot-dashboard.json │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap-custom-resources.yaml │ │ │ │ │ │ ├── configmap-dashboards.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── create-custom-resources-job.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── grafana-ports-mtls.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── test-grafana-connection.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── istiocoredns │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── kiali │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── demosecret.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── test-kiali-connection.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── mixer │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── config.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── nodeagent │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── pilot │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── meshexpansion.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── prometheus │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebindings.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── test-prometheus-connection.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── security │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── create-custom-resources-job.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── enable-mesh-mtls.yaml │ │ │ │ │ │ ├── enable-mesh-permissive.yaml │ │ │ │ │ │ ├── meshexpansion.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── test-citadel-connection.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── sidecarInjectorWebhook │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── mutatingwebhook.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── tracing │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment-jaeger.yaml │ │ │ │ │ ├── deployment-zipkin.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service-jaeger.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-tracing-connection.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── example-values │ │ │ │ ├── README.md │ │ │ │ ├── values-istio-dns-cert.yaml │ │ │ │ ├── values-istio-example-sds-vault.yaml │ │ │ │ ├── values-istio-gateways.yaml │ │ │ │ ├── values-istio-googleca.yaml │ │ │ │ ├── values-istio-meshexpansion-gateways.yaml │ │ │ │ └── values-istio-multicluster-gateways.yaml │ │ │ │ ├── files │ │ │ │ └── injection-template.yaml │ │ │ │ ├── requirements.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _affinity.tpl │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _podDisruptionBudget.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── install-custom-resources.sh.tpl │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── sidecar-injector-configmap.yaml │ │ │ │ ├── test-values │ │ │ │ ├── README.md │ │ │ │ ├── values-e2e.yaml │ │ │ │ ├── values-istio-auth-mcp.yaml │ │ │ │ ├── values-istio-auth-multicluster.yaml │ │ │ │ ├── values-istio-auth-non-mcp.yaml │ │ │ │ ├── values-istio-auth-sds.yaml │ │ │ │ ├── values-istio-auth.yaml │ │ │ │ ├── values-istio-dns-cert.yaml │ │ │ │ ├── values-istio-mcp.yaml │ │ │ │ ├── values-istio-multicluster-split-horizon.yaml │ │ │ │ ├── values-istio-multicluster.yaml │ │ │ │ ├── values-istio-non-mcp.yaml │ │ │ │ ├── values-istio-one-namespace-auth.yaml │ │ │ │ ├── values-istio-one-namespace-trust-domain.yaml │ │ │ │ ├── values-istio-one-namespace.yaml │ │ │ │ └── values-istio.yaml │ │ │ │ ├── values-istio-demo.yaml │ │ │ │ ├── values-istio-minimal.yaml │ │ │ │ ├── values-istio-remote.yaml │ │ │ │ ├── values-istio-sds-auth-control-plane-auth-disabled.yaml │ │ │ │ ├── values-istio-sds-auth.yaml │ │ │ │ └── values.yaml │ │ │ ├── istio-demo.yaml │ │ │ ├── mesh-expansion.yaml │ │ │ ├── namespace.yaml │ │ │ └── operator │ │ │ ├── charts │ │ │ ├── base │ │ │ │ ├── Chart.yaml │ │ │ │ ├── files │ │ │ │ │ ├── crd-10.yaml │ │ │ │ │ ├── crd-11.yaml │ │ │ │ │ ├── crd-14.yaml │ │ │ │ │ ├── crd-certmanager-10.yaml │ │ │ │ │ └── crd-certmanager-11.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── crds.yaml │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── namespaces.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── services.yaml │ │ │ │ └── values.yaml │ │ │ ├── gateways │ │ │ │ ├── istio-egress │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── preconfigured.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── istio-ingress │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ ├── addongateway.yaml │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ ├── certificate.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── gateway.yaml │ │ │ │ │ ├── hosts.yaml │ │ │ │ │ ├── meshexpansion.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── preconfigured.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebindings.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── sidecar.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── istio-cni │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap-cni.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── istio-control │ │ │ │ ├── istio-autoinject │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── files │ │ │ │ │ │ └── injection-template.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── mutatingwebhook.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── sidecar-injector-configmap.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── istio-config │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap-envoy.yaml │ │ │ │ │ │ ├── configmap-mesh.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── validatingwebhookconfiguration.yaml.tpl │ │ │ │ │ └── values.yaml │ │ │ │ └── istio-discovery │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── metadata-exchange-v2.yaml │ │ │ │ │ ├── stats-filter-v2.yaml │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap-envoy.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── enable-mesh-mtls.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── telemetryv2.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── istio-policy │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── istio-telemetry │ │ │ │ ├── grafana │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── citadel-dashboard.json │ │ │ │ │ │ ├── galley-dashboard.json │ │ │ │ │ │ ├── istio-mesh-dashboard.json │ │ │ │ │ │ ├── istio-performance-dashboard.json │ │ │ │ │ │ ├── istio-service-dashboard.json │ │ │ │ │ │ ├── istio-workload-dashboard.json │ │ │ │ │ │ ├── mixer-dashboard.json │ │ │ │ │ │ └── pilot-dashboard.json │ │ │ │ │ ├── fix_datasources.sh │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── configmap-dashboards.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── grafana-policy.yaml │ │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── test-grafana-connection.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── kiali │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── demosecret.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── mixer-telemetry │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── autoscale.yaml │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── config.yaml │ │ │ │ │ │ ├── configmap-envoy.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── stackdriver.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── prometheus-operator │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ │ └── servicemonitors.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── prometheus │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebindings.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── test-prometheus-connection.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── tracing │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ ├── deployment-jaeger.yaml │ │ │ │ │ ├── deployment-opencensus.yaml │ │ │ │ │ ├── deployment-zipkin.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service-jaeger.yaml │ │ │ │ │ └── service.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── istiocoredns │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ └── security │ │ │ │ ├── certmanager │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── issuer.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── rbac.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ │ ├── citadel │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _affinity.tpl │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ │ └── nodeagent │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── _affinity.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── deploy │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrole_binding.yaml │ │ │ ├── crds │ │ │ │ ├── istio_v1alpha2_istiocontrolplane_cr.yaml │ │ │ │ └── istio_v1alpha2_istiocontrolplane_crd.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── operator.yaml │ │ │ ├── service.yaml │ │ │ └── service_account.yaml │ │ │ ├── examples │ │ │ ├── multicluster │ │ │ │ ├── values-istio-multicluster-gateways.yaml │ │ │ │ └── values-istio-multicluster-primary.yaml │ │ │ └── vm │ │ │ │ ├── values-istio-meshexpansion-gateways.yaml │ │ │ │ └── values-istio-meshexpansion.yaml │ │ │ ├── profiles │ │ │ ├── default.yaml │ │ │ ├── demo.yaml │ │ │ ├── minimal.yaml │ │ │ ├── remote.yaml │ │ │ └── sds.yaml │ │ │ └── versions.yaml │ ├── manifest.yaml │ ├── samples │ │ ├── README.md │ │ ├── bookinfo │ │ │ ├── README.md │ │ │ ├── networking │ │ │ │ ├── bookinfo-gateway.yaml │ │ │ │ ├── certmanager-gateway.yaml │ │ │ │ ├── destination-rule-all-mtls.yaml │ │ │ │ ├── destination-rule-all.yaml │ │ │ │ ├── destination-rule-reviews.yaml │ │ │ │ ├── egress-rule-google-apis.yaml │ │ │ │ ├── fault-injection-details-v1.yaml │ │ │ │ ├── virtual-service-all-v1.yaml │ │ │ │ ├── virtual-service-details-v2.yaml │ │ │ │ ├── virtual-service-ratings-db.yaml │ │ │ │ ├── virtual-service-ratings-mysql-vm.yaml │ │ │ │ ├── virtual-service-ratings-mysql.yaml │ │ │ │ ├── virtual-service-ratings-test-abort.yaml │ │ │ │ ├── virtual-service-ratings-test-delay.yaml │ │ │ │ ├── virtual-service-reviews-50-v3.yaml │ │ │ │ ├── virtual-service-reviews-80-20.yaml │ │ │ │ ├── virtual-service-reviews-90-10.yaml │ │ │ │ ├── virtual-service-reviews-jason-v2-v3.yaml │ │ │ │ ├── virtual-service-reviews-test-v2.yaml │ │ │ │ ├── virtual-service-reviews-v2-v3.yaml │ │ │ │ └── virtual-service-reviews-v3.yaml │ │ │ ├── platform │ │ │ │ ├── consul │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bookinfo.yaml │ │ │ │ │ ├── cleanup.sh │ │ │ │ │ ├── destination-rule-all.yaml │ │ │ │ │ ├── virtual-service-all-v1.yaml │ │ │ │ │ ├── virtual-service-ratings-test-abort.yaml │ │ │ │ │ ├── virtual-service-ratings-test-delay.yaml │ │ │ │ │ ├── virtual-service-reviews-50-v3.yaml │ │ │ │ │ ├── virtual-service-reviews-test-v2.yaml │ │ │ │ │ ├── virtual-service-reviews-v2-v3.yaml │ │ │ │ │ └── virtual-service-reviews-v3.yaml │ │ │ │ └── kube │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bookinfo-certificate.yaml │ │ │ │ │ ├── bookinfo-db.yaml │ │ │ │ │ ├── bookinfo-details-v2.yaml │ │ │ │ │ ├── bookinfo-details.yaml │ │ │ │ │ ├── bookinfo-ingress.yaml │ │ │ │ │ ├── bookinfo-mysql.yaml │ │ │ │ │ ├── bookinfo-ratings-discovery.yaml │ │ │ │ │ ├── bookinfo-ratings-v2-mysql-vm.yaml │ │ │ │ │ ├── bookinfo-ratings-v2-mysql.yaml │ │ │ │ │ ├── bookinfo-ratings-v2.yaml │ │ │ │ │ ├── bookinfo-ratings.yaml │ │ │ │ │ ├── bookinfo-reviews-v2.yaml │ │ │ │ │ ├── bookinfo.yaml │ │ │ │ │ ├── cleanup.sh │ │ │ │ │ ├── productpage-nodeport.yaml │ │ │ │ │ └── rbac │ │ │ │ │ ├── details-reviews-policy-permissive.yaml │ │ │ │ │ ├── details-reviews-policy.yaml │ │ │ │ │ ├── mongodb-policy.yaml │ │ │ │ │ ├── namespace-policy.yaml │ │ │ │ │ ├── productpage-policy.yaml │ │ │ │ │ ├── ratings-policy.yaml │ │ │ │ │ ├── rbac-config-ON.yaml │ │ │ │ │ ├── rbac-config-on-mongodb.yaml │ │ │ │ │ ├── rbac-config-on-permissive.yaml │ │ │ │ │ └── rbac-permissive-telemetry.yaml │ │ │ ├── policy │ │ │ │ ├── mixer-rule-deny-ip-crd.yaml │ │ │ │ ├── mixer-rule-deny-ip.yaml │ │ │ │ ├── mixer-rule-deny-label-crd.yaml │ │ │ │ ├── mixer-rule-deny-label.yaml │ │ │ │ ├── mixer-rule-deny-serviceaccount.yaml │ │ │ │ ├── mixer-rule-deny-whitelist-crd.yaml │ │ │ │ ├── mixer-rule-deny-whitelist.yaml │ │ │ │ ├── mixer-rule-ingress-denial.yaml │ │ │ │ ├── mixer-rule-kubernetesenv-telemetry.yaml │ │ │ │ ├── mixer-rule-productpage-ratelimit-crd.yaml │ │ │ │ ├── mixer-rule-productpage-ratelimit.yaml │ │ │ │ ├── mixer-rule-productpage-redis-quota-fixed-window.yaml │ │ │ │ ├── mixer-rule-productpage-redis-quota-rolling-window.yaml │ │ │ │ ├── mixer-rule-ratings-denial.yaml │ │ │ │ ├── mixer-rule-ratings-ratelimit.yaml │ │ │ │ ├── mixer-rule-ratings-redis-quota-fixed-window.yaml │ │ │ │ ├── mixer-rule-ratings-redis-quota-rolling-window.yaml │ │ │ │ ├── prometheus-adapter-deployment.yaml │ │ │ │ └── prometheus-oop-rule.yaml │ │ │ ├── src │ │ │ │ ├── mongodb │ │ │ │ │ └── ratings_data.json │ │ │ │ ├── productpage │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── test-requirements.txt │ │ │ │ └── ratings │ │ │ │ │ └── package.json │ │ │ ├── swagger.yaml │ │ │ └── telemetry │ │ │ │ ├── fluentd-istio-crd.yaml │ │ │ │ ├── fluentd-istio.yaml │ │ │ │ ├── log-entry-crd.yaml │ │ │ │ ├── log-entry.yaml │ │ │ │ ├── metrics-crd.yaml │ │ │ │ ├── metrics.yaml │ │ │ │ ├── tcp-metrics-crd.yaml │ │ │ │ └── tcp-metrics.yaml │ │ ├── certs │ │ │ ├── README.md │ │ │ ├── ca-cert.pem │ │ │ ├── ca-key.pem │ │ │ ├── cert-chain.pem │ │ │ └── root-cert.pem │ │ ├── custom-bootstrap │ │ │ ├── README.md │ │ │ ├── custom-bootstrap.yaml │ │ │ └── example-app.yaml │ │ ├── external │ │ │ ├── README.md │ │ │ ├── aptget.yaml │ │ │ ├── github.yaml │ │ │ └── pypi.yaml │ │ ├── fortio │ │ │ └── stackdriver.yaml │ │ ├── health-check │ │ │ ├── liveness-command.yaml │ │ │ ├── liveness-http-same-port.yaml │ │ │ └── liveness-http.yaml │ │ ├── helloworld │ │ │ ├── README.md │ │ │ ├── helloworld-gateway.yaml │ │ │ ├── helloworld.yaml │ │ │ └── src │ │ │ │ └── requirements.txt │ │ ├── httpbin │ │ │ ├── README.md │ │ │ ├── httpbin-gateway.yaml │ │ │ ├── httpbin-nodeport.yaml │ │ │ ├── httpbin-vault.yaml │ │ │ ├── httpbin.yaml │ │ │ ├── policy │ │ │ │ ├── keyval-template.yaml │ │ │ │ └── keyval.yaml │ │ │ └── sample-client │ │ │ │ └── fortio-deploy.yaml │ │ ├── https │ │ │ ├── default.conf │ │ │ └── nginx-app.yaml │ │ ├── kubernetes-blog │ │ │ ├── bookinfo-ratings.yaml │ │ │ ├── bookinfo-reviews-v2.yaml │ │ │ └── bookinfo-v1.yaml │ │ ├── multicluster │ │ │ └── README.md │ │ ├── operator │ │ │ ├── pilot-advanced-override.yaml │ │ │ ├── pilot-k8s.yaml │ │ │ ├── sds-policy-off.yaml │ │ │ ├── sds.yaml │ │ │ ├── trafficManagement-namespace.yaml │ │ │ ├── values-global.yaml │ │ │ └── values-pilot.yaml │ │ ├── rawvm │ │ │ └── README.md │ │ ├── security │ │ │ └── psp │ │ │ │ ├── all-pods-psp.yaml │ │ │ │ └── citadel-agent-psp.yaml │ │ ├── sleep │ │ │ ├── README.md │ │ │ ├── policy │ │ │ │ ├── sni-serviceaccount.yaml │ │ │ │ └── sni-wikipedia.yaml │ │ │ ├── sleep-vault.yaml │ │ │ ├── sleep.yaml │ │ │ └── telemetry │ │ │ │ └── sni-logging.yaml │ │ ├── tcp-echo │ │ │ ├── README.md │ │ │ ├── tcp-echo-20-v2.yaml │ │ │ ├── tcp-echo-all-v1.yaml │ │ │ ├── tcp-echo-services.yaml │ │ │ └── tcp-echo.yaml │ │ └── websockets │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ └── route.yaml │ └── tools │ │ ├── _istioctl │ │ ├── convert_RbacConfig_to_ClusterRbacConfig.sh │ │ ├── dump_kubernetes.sh │ │ ├── istioctl.bash │ │ └── packaging │ │ └── common │ │ └── istio-iptables.sh └── terraform │ ├── auth │ └── serviceaccount.json │ ├── gke.tf │ ├── provider.tf │ └── versions.tf ├── chapter11 ├── metrics1.txt └── metrics2.txt ├── chapter2 └── example1 │ ├── Dockerfile │ └── index.html ├── chapter3 └── app │ ├── back.yaml │ ├── back │ ├── Dockerfile │ ├── back.py │ ├── back.yaml │ └── requirements.txt │ └── data │ ├── Dockerfile │ ├── import.sh │ └── mydatabase.sql ├── chapter4 ├── back.yaml ├── data.yaml └── secrets │ ├── back.yaml │ ├── data.yaml │ ├── key.txt │ └── secrets.yaml ├── chapter5 └── terraform │ ├── allenv │ ├── auth │ │ └── serviceaccount.json │ ├── main.tf │ ├── production.tfvars │ ├── testing.tf │ └── testing.tfvars │ ├── noenv │ ├── auth │ │ └── serviceaccount.json │ ├── gke.tf │ └── provider.tf │ ├── production │ ├── auth │ │ └── serviceaccount.json │ └── main.tf │ └── testing │ ├── auth │ └── serviceaccount.json │ ├── main.tf │ └── variables.tf ├── chapter6 ├── ansible │ ├── group_vars │ │ ├── all.yaml │ │ └── frontened.yaml │ ├── host_vars │ │ └── localhost.yaml │ ├── hosts.yaml │ ├── production.yaml │ ├── roles │ │ └── common │ │ │ ├── tasks │ │ │ ├── custom.yaml │ │ │ ├── hostname.yaml │ │ │ ├── main.yaml │ │ │ └── success.yaml │ │ │ └── templates │ │ │ └── test.j2 │ ├── site.yaml │ └── testing.yaml ├── playbooks │ └── my_playbook.yaml └── terraform │ ├── host_vars │ └── localhost.yaml │ ├── plan │ ├── auth │ │ └── serviceaccount.json │ ├── env.tfvars │ ├── main.tf │ └── variables.tf │ ├── roles │ └── common │ │ ├── tasks │ │ ├── main.yaml │ │ └── tfvars.yaml │ │ └── templates │ │ └── tfvars.j2 │ └── site.yaml ├── chapter7 ├── first_chart │ └── quotes │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── back.yaml │ │ └── data.yaml │ │ └── values.yaml ├── get_helm.sh ├── managing_configurations │ └── quotes │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── back.yaml │ │ └── data.yaml │ │ └── values.yaml ├── managing_environments │ ├── 1 │ │ ├── .gitignore │ │ └── quotes │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── helm_vars │ │ │ ├── .sops.yaml │ │ │ └── secrets.yaml │ │ │ ├── templates │ │ │ ├── back.yaml │ │ │ ├── data.yaml │ │ │ └── secrets.yaml │ │ │ ├── values-production.yaml │ │ │ └── values-testing.yaml │ └── 2 │ │ ├── .gitignore │ │ └── quotes │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── helm_vars │ │ ├── .sops.yaml │ │ └── secrets.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── back.yaml │ │ ├── data.yaml │ │ └── secrets.yaml │ │ └── values.yaml ├── managing_secrets │ ├── .gitignore │ └── quotes │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── helm_vars │ │ ├── .sops.yaml │ │ └── secrets.yaml │ │ ├── templates │ │ ├── back.yaml │ │ ├── data.yaml │ │ └── secrets.yaml │ │ └── values.yaml ├── quotes │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── back.yaml │ │ └── data.yaml │ └── values.yaml └── terraform │ ├── auth │ └── serviceaccount.json │ ├── gke.tf │ └── provider.tf ├── chapter8 ├── ingress_with_static_ip │ └── helm │ │ └── quotes │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── back.yaml │ │ ├── data.yaml │ │ └── ingress.yaml │ │ └── values.yaml ├── ingress_without_static_ip │ └── helm │ │ └── quotes │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── back.yaml │ │ ├── data.yaml │ │ └── ingress.yaml │ │ └── values.yaml └── terraform │ ├── auth │ └── serviceaccount.json │ ├── gke.tf │ └── provider.tf ├── chapter9 ├── helm │ └── quotes │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── ambassador-service.yaml │ │ ├── back.yaml │ │ ├── data.yaml │ │ └── ingress.yaml │ │ └── values.yaml └── terraform │ ├── auth │ └── serviceaccount.json │ ├── gke.tf │ └── provider.tf └── quotes.sql /.gitignore: -------------------------------------------------------------------------------- 1 | auth/* 2 | .terraform/* 3 | -------------------------------------------------------------------------------- /chapter1/app/back/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/back/Dockerfile -------------------------------------------------------------------------------- /chapter1/app/back/back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/back/back.py -------------------------------------------------------------------------------- /chapter1/app/back/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/back/requirements.txt -------------------------------------------------------------------------------- /chapter1/app/data/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mysql:5.7 2 | EXPOSE 3306 3 | -------------------------------------------------------------------------------- /chapter1/app/data/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/data/import.sh -------------------------------------------------------------------------------- /chapter1/app/data/mydatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/data/mydatabase.sql -------------------------------------------------------------------------------- /chapter1/app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/docker-compose.yml -------------------------------------------------------------------------------- /chapter1/app/front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/front/Dockerfile -------------------------------------------------------------------------------- /chapter1/app/front/front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/front/front.py -------------------------------------------------------------------------------- /chapter1/app/front/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/front/requirements.txt -------------------------------------------------------------------------------- /chapter1/app/front/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/front/templates/index.html -------------------------------------------------------------------------------- /chapter1/app/front/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app/front/templates/layout.html -------------------------------------------------------------------------------- /chapter1/app_v2/back/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/back/Dockerfile -------------------------------------------------------------------------------- /chapter1/app_v2/back/back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/back/back.py -------------------------------------------------------------------------------- /chapter1/app_v2/back/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/back/requirements.txt -------------------------------------------------------------------------------- /chapter1/app_v2/data/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mysql:5.7 2 | EXPOSE 3306 3 | -------------------------------------------------------------------------------- /chapter1/app_v2/data/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/data/import.sh -------------------------------------------------------------------------------- /chapter1/app_v2/data/mydatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/data/mydatabase.sql -------------------------------------------------------------------------------- /chapter1/app_v2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/docker-compose.yml -------------------------------------------------------------------------------- /chapter1/app_v2/kompose_output/back-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/kompose_output/back-deployment.yaml -------------------------------------------------------------------------------- /chapter1/app_v2/kompose_output/back-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/kompose_output/back-service.yaml -------------------------------------------------------------------------------- /chapter1/app_v2/kompose_output/data-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/kompose_output/data-deployment.yaml -------------------------------------------------------------------------------- /chapter1/app_v2/kompose_output/myapp-networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter1/app_v2/kompose_output/myapp-networkpolicy.yaml -------------------------------------------------------------------------------- /chapter10/canary/quotes/back_v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/back_v1/Dockerfile -------------------------------------------------------------------------------- /chapter10/canary/quotes/back_v1/back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/back_v1/back.py -------------------------------------------------------------------------------- /chapter10/canary/quotes/back_v1/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/back_v1/back.yaml -------------------------------------------------------------------------------- /chapter10/canary/quotes/back_v1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/back_v1/requirements.txt -------------------------------------------------------------------------------- /chapter10/canary/quotes/back_v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/back_v2/Dockerfile -------------------------------------------------------------------------------- /chapter10/canary/quotes/back_v2/back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/back_v2/back.py -------------------------------------------------------------------------------- /chapter10/canary/quotes/back_v2/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/back_v2/back.yaml -------------------------------------------------------------------------------- /chapter10/canary/quotes/back_v2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/back_v2/requirements.txt -------------------------------------------------------------------------------- /chapter10/canary/quotes/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/data.yaml -------------------------------------------------------------------------------- /chapter10/canary/quotes/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/ingress.yaml -------------------------------------------------------------------------------- /chapter10/canary/quotes/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/canary/quotes/service.yaml -------------------------------------------------------------------------------- /chapter10/ingress/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/ingress/back.yaml -------------------------------------------------------------------------------- /chapter10/ingress/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/ingress/data.yaml -------------------------------------------------------------------------------- /chapter10/ingress/ingress1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/ingress/ingress1.yaml -------------------------------------------------------------------------------- /chapter10/ingress/ingress2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/ingress/ingress2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/LICENSE -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/bin/istioctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/bin/istioctl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/consul/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/consul/consul_config/agent-loglevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/consul/consul_config/agent-loglevel.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/consul/consul_config/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/consul/consul_config/agent.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/consul/consul_config/disable_update_check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/consul/consul_config/disable_update_check.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/consul/consul_config/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/consul/consul_config/server.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/gcp/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/gcp/bootstrap/gcp_envoy_bootstrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/gcp/bootstrap/gcp_envoy_bootstrap.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/global-default-sidecar-scope.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/global-default-sidecar-scope.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/helm-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/helm-service-account.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/templates/_labels.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/templates/istio-cni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/templates/istio-cni.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/values_gke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-cni/values_gke.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-11.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-14.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-certmanager-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-certmanager-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-certmanager-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/files/crd-certmanager-11.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-11.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-14.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-certmanager-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-certmanager-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-certmanager-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/configmap-crd-certmanager-11.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-11.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-14.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-certmanager-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-certmanager-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-certmanager-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/job-crd-certmanager-11.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio-init/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/NOTES.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/issuer.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/rbac.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/certmanager/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/galley/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/_affinity.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/autoscale.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/preconfigured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/preconfigured.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/role.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/rolebindings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/rolebindings.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/gateways/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/citadel-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/citadel-dashboard.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/galley-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/galley-dashboard.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/istio-mesh-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/istio-mesh-dashboard.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/mixer-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/mixer-dashboard.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/pilot-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/dashboards/pilot-dashboard.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/configmap-dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/configmap-dashboards.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/grafana-ports-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/grafana-ports-mtls.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/ingress.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/grafana/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/istiocoredns/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/demosecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/demosecret.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/ingress.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/kiali/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/autoscale.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/config.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/mixer/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/daemonset.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/nodeagent/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/autoscale.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/meshexpansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/meshexpansion.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/pilot/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/ingress.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/prometheus/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/enable-mesh-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/enable-mesh-mtls.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/meshexpansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/meshexpansion.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/security/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/sidecarInjectorWebhook/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/sidecarInjectorWebhook/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/sidecarInjectorWebhook/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/sidecarInjectorWebhook/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/deployment-jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/deployment-jaeger.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/deployment-zipkin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/deployment-zipkin.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/ingress.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/pvc.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/service-jaeger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/service-jaeger.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/charts/tracing/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/values-istio-dns-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/values-istio-dns-cert.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/values-istio-example-sds-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/values-istio-example-sds-vault.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/values-istio-gateways.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/values-istio-gateways.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/values-istio-googleca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/example-values/values-istio-googleca.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/files/injection-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/files/injection-template.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/requirements.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/NOTES.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/_affinity.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/_podDisruptionBudget.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/_podDisruptionBudget.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/endpoints.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/install-custom-resources.sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/install-custom-resources.sh.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/sidecar-injector-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/templates/sidecar-injector-configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-e2e.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth-mcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth-mcp.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth-multicluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth-multicluster.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth-non-mcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth-non-mcp.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth-sds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth-sds.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-auth.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-dns-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-dns-cert.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-mcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-mcp.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-multicluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-multicluster.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-non-mcp.yaml: -------------------------------------------------------------------------------- 1 | global: 2 | useMCP: false 3 | -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-one-namespace-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-one-namespace-auth.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-one-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio-one-namespace.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/test-values/values-istio.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/values-istio-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/values-istio-demo.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/values-istio-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/values-istio-minimal.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/values-istio-remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/values-istio-remote.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/values-istio-sds-auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/values-istio-sds-auth.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/helm/istio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/helm/istio/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/istio-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/istio-demo.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/mesh-expansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/mesh-expansion.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/namespace.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-11.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-14.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-certmanager-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-certmanager-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-certmanager-11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/files/crd-certmanager-11.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/kustomization.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/crds.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/endpoints.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/namespaces.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/templates/services.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/base/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/NOTES.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/templates/_affinity.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/templates/autoscale.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-egress/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/NOTES.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/templates/_affinity.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/templates/hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/templates/hosts.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/templates/role.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/gateways/istio-ingress/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/configmap-cni.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/configmap-cni.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/daemonset.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-cni/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-autoinject/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-autoinject/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-autoinject/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-autoinject/NOTES.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-autoinject/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-autoinject/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-config/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-config/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-config/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-config/OWNERS -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-config/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-config/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-discovery/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-discovery/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-discovery/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-discovery/NOTES.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-discovery/templates/_helpers.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-discovery/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-control/istio-discovery/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/_affinity.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/autoscale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/autoscale.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/config.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-policy/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/grafana/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/grafana/fix_datasources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/grafana/fix_datasources.sh -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/grafana/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/kiali/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/kiali/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/kiali/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/kiali/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/mixer-telemetry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/mixer-telemetry/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/mixer-telemetry/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/mixer-telemetry/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/prometheus/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/prometheus/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/tracing/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/tracing/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/tracing/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/tracing/templates/pvc.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/tracing/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istio-telemetry/tracing/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/_affinity.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/configmap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/istiocoredns/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/templates/NOTES.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/templates/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/templates/issuer.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/templates/rbac.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/certmanager/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/NOTES.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/_affinity.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/templates/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/citadel/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/nodeagent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/nodeagent/Chart.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/nodeagent/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/nodeagent/templates/_affinity.tpl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/nodeagent/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/nodeagent/templates/daemonset.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/nodeagent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/charts/security/nodeagent/values.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/deploy/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/deploy/clusterrole.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/deploy/clusterrole_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/deploy/clusterrole_binding.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/deploy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/deploy/kustomization.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/deploy/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/deploy/namespace.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/deploy/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/deploy/operator.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/deploy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/deploy/service.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/deploy/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/deploy/service_account.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/examples/vm/values-istio-meshexpansion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/examples/vm/values-istio-meshexpansion.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/profiles/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/profiles/default.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/profiles/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/profiles/demo.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/profiles/minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/profiles/minimal.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/profiles/remote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/profiles/remote.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/profiles/sds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/profiles/sds.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/install/kubernetes/operator/versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/install/kubernetes/operator/versions.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/manifest.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/bookinfo-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/bookinfo-gateway.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/certmanager-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/certmanager-gateway.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/destination-rule-all-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/destination-rule-all-mtls.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/destination-rule-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/destination-rule-all.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/destination-rule-reviews.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/destination-rule-reviews.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/egress-rule-google-apis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/egress-rule-google-apis.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/fault-injection-details-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/fault-injection-details-v1.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-all-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-all-v1.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-details-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-details-v2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-db.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-mysql-vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-mysql-vm.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-mysql.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-test-abort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-test-abort.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-test-delay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-ratings-test-delay.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-50-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-50-v3.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-80-20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-80-20.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-90-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-90-10.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-jason-v2-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-jason-v2-v3.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-test-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-test-v2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-v2-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-v2-v3.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/networking/virtual-service-reviews-v3.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/bookinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/bookinfo.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/cleanup.sh -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/destination-rule-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/destination-rule-all.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-all-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-all-v1.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-ratings-test-abort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-ratings-test-abort.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-ratings-test-delay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-ratings-test-delay.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-reviews-50-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-reviews-50-v3.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-reviews-test-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-reviews-test-v2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-reviews-v2-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-reviews-v2-v3.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-reviews-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/consul/virtual-service-reviews-v3.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-certificate.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-db.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-details-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-details-v2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-details.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ingress.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-mysql.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings-discovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings-discovery.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql-vm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql-vm.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings-v2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-ratings.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-reviews-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo-reviews-v2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/bookinfo.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/cleanup.sh -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/productpage-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/productpage-nodeport.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/details-reviews-policy-permissive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/details-reviews-policy-permissive.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/details-reviews-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/details-reviews-policy.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/mongodb-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/mongodb-policy.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/namespace-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/namespace-policy.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/productpage-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/productpage-policy.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/ratings-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/ratings-policy.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/rbac-config-ON.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/rbac-config-ON.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/rbac-config-on-mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/rbac-config-on-mongodb.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/rbac-config-on-permissive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/rbac-config-on-permissive.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/rbac-permissive-telemetry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/platform/kube/rbac/rbac-permissive-telemetry.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-ip-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-ip-crd.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-ip.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-label-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-label-crd.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-label.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-whitelist-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-whitelist-crd.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-whitelist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-deny-whitelist.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ingress-denial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ingress-denial.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-kubernetesenv-telemetry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-kubernetesenv-telemetry.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-productpage-ratelimit-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-productpage-ratelimit-crd.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-productpage-ratelimit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-productpage-ratelimit.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-productpage-redis-quota-fixed-window.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-productpage-redis-quota-fixed-window.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-productpage-redis-quota-rolling-window.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-productpage-redis-quota-rolling-window.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ratings-denial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ratings-denial.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ratings-ratelimit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ratings-ratelimit.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ratings-redis-quota-fixed-window.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ratings-redis-quota-fixed-window.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ratings-redis-quota-rolling-window.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/mixer-rule-ratings-redis-quota-rolling-window.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/prometheus-adapter-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/prometheus-adapter-deployment.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/policy/prometheus-oop-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/policy/prometheus-oop-rule.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/src/mongodb/ratings_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/src/mongodb/ratings_data.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/src/productpage/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/src/productpage/requirements.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/src/productpage/test-requirements.txt: -------------------------------------------------------------------------------- 1 | requests-mock==1.5.2 2 | -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/src/ratings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/src/ratings/package.json -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/swagger.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/telemetry/fluentd-istio-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/telemetry/fluentd-istio-crd.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/telemetry/fluentd-istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/telemetry/fluentd-istio.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/telemetry/log-entry-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/telemetry/log-entry-crd.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/telemetry/log-entry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/telemetry/log-entry.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/telemetry/metrics-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/telemetry/metrics-crd.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/telemetry/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/telemetry/metrics.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/telemetry/tcp-metrics-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/telemetry/tcp-metrics-crd.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/bookinfo/telemetry/tcp-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/bookinfo/telemetry/tcp-metrics.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/certs/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/certs/ca-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/certs/ca-cert.pem -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/certs/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/certs/ca-key.pem -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/certs/cert-chain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/certs/cert-chain.pem -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/certs/root-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/certs/root-cert.pem -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/custom-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/custom-bootstrap/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/custom-bootstrap/custom-bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/custom-bootstrap/custom-bootstrap.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/custom-bootstrap/example-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/custom-bootstrap/example-app.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/external/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/external/aptget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/external/aptget.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/external/github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/external/github.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/external/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/external/pypi.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/fortio/stackdriver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/fortio/stackdriver.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/health-check/liveness-command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/health-check/liveness-command.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/health-check/liveness-http-same-port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/health-check/liveness-http-same-port.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/health-check/liveness-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/health-check/liveness-http.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/helloworld/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/helloworld/helloworld-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/helloworld/helloworld-gateway.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/helloworld/helloworld.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/helloworld/helloworld.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/helloworld/src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/helloworld/src/requirements.txt -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/httpbin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/httpbin/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/httpbin/httpbin-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/httpbin/httpbin-gateway.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/httpbin/httpbin-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/httpbin/httpbin-nodeport.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/httpbin/httpbin-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/httpbin/httpbin-vault.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/httpbin/httpbin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/httpbin/httpbin.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/httpbin/policy/keyval-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/httpbin/policy/keyval-template.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/httpbin/policy/keyval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/httpbin/policy/keyval.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/httpbin/sample-client/fortio-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/httpbin/sample-client/fortio-deploy.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/https/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/https/default.conf -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/https/nginx-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/https/nginx-app.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/kubernetes-blog/bookinfo-ratings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/kubernetes-blog/bookinfo-ratings.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/kubernetes-blog/bookinfo-reviews-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/kubernetes-blog/bookinfo-reviews-v2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/kubernetes-blog/bookinfo-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/kubernetes-blog/bookinfo-v1.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/multicluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/multicluster/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/operator/pilot-advanced-override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/operator/pilot-advanced-override.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/operator/pilot-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/operator/pilot-k8s.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/operator/sds-policy-off.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/operator/sds-policy-off.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/operator/sds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/operator/sds.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/operator/trafficManagement-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/operator/trafficManagement-namespace.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/operator/values-global.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/operator/values-global.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/operator/values-pilot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/operator/values-pilot.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/rawvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/rawvm/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/security/psp/all-pods-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/security/psp/all-pods-psp.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/security/psp/citadel-agent-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/security/psp/citadel-agent-psp.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/sleep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/sleep/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/sleep/policy/sni-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/sleep/policy/sni-serviceaccount.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/sleep/policy/sni-wikipedia.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/sleep/policy/sni-wikipedia.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/sleep/sleep-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/sleep/sleep-vault.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/sleep/sleep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/sleep/sleep.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/sleep/telemetry/sni-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/sleep/telemetry/sni-logging.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/tcp-echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/tcp-echo/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/tcp-echo/tcp-echo-20-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/tcp-echo/tcp-echo-20-v2.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/tcp-echo/tcp-echo-all-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/tcp-echo/tcp-echo-all-v1.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/tcp-echo/tcp-echo-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/tcp-echo/tcp-echo-services.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/tcp-echo/tcp-echo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/tcp-echo/tcp-echo.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/websockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/websockets/README.md -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/websockets/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/websockets/app.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/samples/websockets/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/samples/websockets/route.yaml -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/tools/_istioctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/tools/_istioctl -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/tools/convert_RbacConfig_to_ClusterRbacConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/tools/convert_RbacConfig_to_ClusterRbacConfig.sh -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/tools/dump_kubernetes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/tools/dump_kubernetes.sh -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/tools/istioctl.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/tools/istioctl.bash -------------------------------------------------------------------------------- /chapter10/istio-1.4.2/tools/packaging/common/istio-iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/istio-1.4.2/tools/packaging/common/istio-iptables.sh -------------------------------------------------------------------------------- /chapter10/terraform/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/terraform/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter10/terraform/gke.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/terraform/gke.tf -------------------------------------------------------------------------------- /chapter10/terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter10/terraform/provider.tf -------------------------------------------------------------------------------- /chapter10/terraform/versions.tf: -------------------------------------------------------------------------------- 1 | 2 | terraform { 3 | required_version = ">= 0.12" 4 | } 5 | -------------------------------------------------------------------------------- /chapter11/metrics1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter11/metrics1.txt -------------------------------------------------------------------------------- /chapter11/metrics2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter11/metrics2.txt -------------------------------------------------------------------------------- /chapter2/example1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter2/example1/Dockerfile -------------------------------------------------------------------------------- /chapter2/example1/index.html: -------------------------------------------------------------------------------- 1 | Okay 2 | -------------------------------------------------------------------------------- /chapter3/app/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter3/app/back.yaml -------------------------------------------------------------------------------- /chapter3/app/back/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter3/app/back/Dockerfile -------------------------------------------------------------------------------- /chapter3/app/back/back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter3/app/back/back.py -------------------------------------------------------------------------------- /chapter3/app/back/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter3/app/back/back.yaml -------------------------------------------------------------------------------- /chapter3/app/back/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter3/app/back/requirements.txt -------------------------------------------------------------------------------- /chapter3/app/data/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mysql:5.7 2 | EXPOSE 3306 3 | -------------------------------------------------------------------------------- /chapter3/app/data/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter3/app/data/import.sh -------------------------------------------------------------------------------- /chapter3/app/data/mydatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter3/app/data/mydatabase.sql -------------------------------------------------------------------------------- /chapter4/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter4/back.yaml -------------------------------------------------------------------------------- /chapter4/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter4/data.yaml -------------------------------------------------------------------------------- /chapter4/secrets/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter4/secrets/back.yaml -------------------------------------------------------------------------------- /chapter4/secrets/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter4/secrets/data.yaml -------------------------------------------------------------------------------- /chapter4/secrets/key.txt: -------------------------------------------------------------------------------- 1 | xHahaa2&2 -------------------------------------------------------------------------------- /chapter4/secrets/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter4/secrets/secrets.yaml -------------------------------------------------------------------------------- /chapter5/terraform/allenv/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/allenv/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter5/terraform/allenv/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/allenv/main.tf -------------------------------------------------------------------------------- /chapter5/terraform/allenv/production.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/allenv/production.tfvars -------------------------------------------------------------------------------- /chapter5/terraform/allenv/testing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/allenv/testing.tf -------------------------------------------------------------------------------- /chapter5/terraform/allenv/testing.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/allenv/testing.tfvars -------------------------------------------------------------------------------- /chapter5/terraform/noenv/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/noenv/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter5/terraform/noenv/gke.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/noenv/gke.tf -------------------------------------------------------------------------------- /chapter5/terraform/noenv/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/noenv/provider.tf -------------------------------------------------------------------------------- /chapter5/terraform/production/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/production/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter5/terraform/production/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/production/main.tf -------------------------------------------------------------------------------- /chapter5/terraform/testing/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/testing/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter5/terraform/testing/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/testing/main.tf -------------------------------------------------------------------------------- /chapter5/terraform/testing/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter5/terraform/testing/variables.tf -------------------------------------------------------------------------------- /chapter6/ansible/group_vars/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/group_vars/all.yaml -------------------------------------------------------------------------------- /chapter6/ansible/group_vars/frontened.yaml: -------------------------------------------------------------------------------- 1 | # This is an example. 2 | ntp_server: 192.168.1.33 3 | -------------------------------------------------------------------------------- /chapter6/ansible/host_vars/localhost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/host_vars/localhost.yaml -------------------------------------------------------------------------------- /chapter6/ansible/hosts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/hosts.yaml -------------------------------------------------------------------------------- /chapter6/ansible/production.yaml: -------------------------------------------------------------------------------- 1 | productionserver 2 | -------------------------------------------------------------------------------- /chapter6/ansible/roles/common/tasks/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/roles/common/tasks/custom.yaml -------------------------------------------------------------------------------- /chapter6/ansible/roles/common/tasks/hostname.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/roles/common/tasks/hostname.yaml -------------------------------------------------------------------------------- /chapter6/ansible/roles/common/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/roles/common/tasks/main.yaml -------------------------------------------------------------------------------- /chapter6/ansible/roles/common/tasks/success.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/roles/common/tasks/success.yaml -------------------------------------------------------------------------------- /chapter6/ansible/roles/common/templates/test.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/roles/common/templates/test.j2 -------------------------------------------------------------------------------- /chapter6/ansible/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/ansible/site.yaml -------------------------------------------------------------------------------- /chapter6/ansible/testing.yaml: -------------------------------------------------------------------------------- 1 | testingserver 2 | -------------------------------------------------------------------------------- /chapter6/playbooks/my_playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/playbooks/my_playbook.yaml -------------------------------------------------------------------------------- /chapter6/terraform/host_vars/localhost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/host_vars/localhost.yaml -------------------------------------------------------------------------------- /chapter6/terraform/plan/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/plan/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter6/terraform/plan/env.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/plan/env.tfvars -------------------------------------------------------------------------------- /chapter6/terraform/plan/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/plan/main.tf -------------------------------------------------------------------------------- /chapter6/terraform/plan/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/plan/variables.tf -------------------------------------------------------------------------------- /chapter6/terraform/roles/common/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/roles/common/tasks/main.yaml -------------------------------------------------------------------------------- /chapter6/terraform/roles/common/tasks/tfvars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/roles/common/tasks/tfvars.yaml -------------------------------------------------------------------------------- /chapter6/terraform/roles/common/templates/tfvars.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/roles/common/templates/tfvars.j2 -------------------------------------------------------------------------------- /chapter6/terraform/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter6/terraform/site.yaml -------------------------------------------------------------------------------- /chapter7/first_chart/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/first_chart/quotes/.helmignore -------------------------------------------------------------------------------- /chapter7/first_chart/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/first_chart/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter7/first_chart/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/first_chart/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter7/first_chart/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/first_chart/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter7/first_chart/quotes/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter7/get_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/get_helm.sh -------------------------------------------------------------------------------- /chapter7/managing_configurations/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_configurations/quotes/.helmignore -------------------------------------------------------------------------------- /chapter7/managing_configurations/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_configurations/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter7/managing_configurations/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_configurations/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter7/managing_configurations/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_configurations/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter7/managing_configurations/quotes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_configurations/quotes/values.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/1/.gitignore: -------------------------------------------------------------------------------- 1 | *.yaml.dec 2 | -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/1/quotes/.helmignore -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/1/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/helm_vars/.sops.yaml: -------------------------------------------------------------------------------- 1 | creation_rules: 2 | - pgp: "94346D4E056C5FEAAC79C729EA72447AE3DF747F" 3 | -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/helm_vars/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/1/quotes/helm_vars/secrets.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/1/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/1/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/1/quotes/templates/secrets.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/1/quotes/values-production.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/1/quotes/values-testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/1/quotes/values-testing.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/2/.gitignore: -------------------------------------------------------------------------------- 1 | *.yaml.dec 2 | -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/2/quotes/.helmignore -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/2/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/helm_vars/.sops.yaml: -------------------------------------------------------------------------------- 1 | creation_rules: 2 | - pgp: "94346D4E056C5FEAAC79C729EA72447AE3DF747F" 3 | -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/helm_vars/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/2/quotes/helm_vars/secrets.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/2/quotes/templates/_helpers.tpl -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/2/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/2/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/2/quotes/templates/secrets.yaml -------------------------------------------------------------------------------- /chapter7/managing_environments/2/quotes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_environments/2/quotes/values.yaml -------------------------------------------------------------------------------- /chapter7/managing_secrets/.gitignore: -------------------------------------------------------------------------------- 1 | *.yaml.dec 2 | -------------------------------------------------------------------------------- /chapter7/managing_secrets/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_secrets/quotes/.helmignore -------------------------------------------------------------------------------- /chapter7/managing_secrets/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_secrets/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter7/managing_secrets/quotes/helm_vars/.sops.yaml: -------------------------------------------------------------------------------- 1 | creation_rules: 2 | - pgp: "94346D4E056C5FEAAC79C729EA72447AE3DF747F" 3 | -------------------------------------------------------------------------------- /chapter7/managing_secrets/quotes/helm_vars/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_secrets/quotes/helm_vars/secrets.yaml -------------------------------------------------------------------------------- /chapter7/managing_secrets/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_secrets/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter7/managing_secrets/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_secrets/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter7/managing_secrets/quotes/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_secrets/quotes/templates/secrets.yaml -------------------------------------------------------------------------------- /chapter7/managing_secrets/quotes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/managing_secrets/quotes/values.yaml -------------------------------------------------------------------------------- /chapter7/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/quotes/.helmignore -------------------------------------------------------------------------------- /chapter7/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter7/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter7/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter7/quotes/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter7/terraform/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/terraform/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter7/terraform/gke.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/terraform/gke.tf -------------------------------------------------------------------------------- /chapter7/terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter7/terraform/provider.tf -------------------------------------------------------------------------------- /chapter8/ingress_with_static_ip/helm/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_with_static_ip/helm/quotes/.helmignore -------------------------------------------------------------------------------- /chapter8/ingress_with_static_ip/helm/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_with_static_ip/helm/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter8/ingress_with_static_ip/helm/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_with_static_ip/helm/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter8/ingress_with_static_ip/helm/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_with_static_ip/helm/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter8/ingress_with_static_ip/helm/quotes/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_with_static_ip/helm/quotes/templates/ingress.yaml -------------------------------------------------------------------------------- /chapter8/ingress_with_static_ip/helm/quotes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_with_static_ip/helm/quotes/values.yaml -------------------------------------------------------------------------------- /chapter8/ingress_without_static_ip/helm/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_without_static_ip/helm/quotes/.helmignore -------------------------------------------------------------------------------- /chapter8/ingress_without_static_ip/helm/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_without_static_ip/helm/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter8/ingress_without_static_ip/helm/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_without_static_ip/helm/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter8/ingress_without_static_ip/helm/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_without_static_ip/helm/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter8/ingress_without_static_ip/helm/quotes/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_without_static_ip/helm/quotes/templates/ingress.yaml -------------------------------------------------------------------------------- /chapter8/ingress_without_static_ip/helm/quotes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/ingress_without_static_ip/helm/quotes/values.yaml -------------------------------------------------------------------------------- /chapter8/terraform/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/terraform/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter8/terraform/gke.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/terraform/gke.tf -------------------------------------------------------------------------------- /chapter8/terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter8/terraform/provider.tf -------------------------------------------------------------------------------- /chapter9/helm/quotes/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/helm/quotes/.helmignore -------------------------------------------------------------------------------- /chapter9/helm/quotes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/helm/quotes/Chart.yaml -------------------------------------------------------------------------------- /chapter9/helm/quotes/templates/ambassador-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/helm/quotes/templates/ambassador-service.yaml -------------------------------------------------------------------------------- /chapter9/helm/quotes/templates/back.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/helm/quotes/templates/back.yaml -------------------------------------------------------------------------------- /chapter9/helm/quotes/templates/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/helm/quotes/templates/data.yaml -------------------------------------------------------------------------------- /chapter9/helm/quotes/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/helm/quotes/templates/ingress.yaml -------------------------------------------------------------------------------- /chapter9/helm/quotes/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/helm/quotes/values.yaml -------------------------------------------------------------------------------- /chapter9/terraform/auth/serviceaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/terraform/auth/serviceaccount.json -------------------------------------------------------------------------------- /chapter9/terraform/gke.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/terraform/gke.tf -------------------------------------------------------------------------------- /chapter9/terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/chapter9/terraform/provider.tf -------------------------------------------------------------------------------- /quotes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eon01/LearnKubernetesByBuilding10Projects/HEAD/quotes.sql --------------------------------------------------------------------------------