├── Chapter01 ├── DockerFile └── docker-example.sh ├── Chapter02 └── azure-vote.yaml ├── Chapter03 ├── example-redis-config.yaml ├── frontend-deployment.yaml ├── frontend-service.yaml ├── mariadb_statefulset.yaml ├── mariadbss.yaml ├── nillsf.yaml ├── redis-config ├── redis-config.yaml ├── redis-master-deployment.yaml ├── redis-master-deployment_Modified.yaml ├── redis-master-service.yaml ├── redis-replica-deployment.yaml └── redis-replica-service.yaml ├── Chapter04 ├── frontend-image-patch.yaml ├── frontend-service.yaml ├── guestbook-all-in-one.yaml └── hpa.yaml ├── Chapter05 └── guestbook-all-in-one.yaml ├── Chapter06 ├── certificate-issuer-prod.yaml ├── certificate-issuer.yaml ├── frontend-oauth2-ingress.yaml ├── guestbook-all-in-one.yaml ├── ingress-with-tls-prod.yaml ├── ingress-with-tls.yaml ├── oauth2_deployment.yaml ├── oauth2_ingress.yaml ├── oauth2_service.yaml ├── setup-appgw.sh └── simple-frontend-ingress.yaml ├── Chapter07 ├── guestbook-all-in-one.yaml ├── healthy.html ├── index1.html ├── index2.html ├── testWeb.sh ├── webdeploy1.yaml ├── webdeploy2.yaml └── webservice.yaml ├── Chapter08 ├── azure-vote.yaml ├── clusterRole.yaml ├── clusterRoleBinding.yaml ├── role.yaml └── roleBinding.yaml ├── Chapter09 ├── deployment-with-identity.yaml └── deployment-without-identity.yaml ├── Chapter10 ├── myfirstsecret.yaml ├── pod-keyvault-env.yaml ├── pod-keyvault-file.yaml ├── pod-with-env-secrets.yaml ├── pod-with-vol-secret.yaml ├── secretproviderclass-env.yaml ├── secretproviderclass-file.yaml ├── secrettoken.txt └── secreturl.txt ├── Chapter11 ├── allow-a-to-b.yaml ├── deny-all.yaml ├── front-end-service-internal.yaml ├── front-end-service-secured.yaml ├── front-end-service.yaml ├── guestbook-without-service.yaml ├── web-server-a.yaml └── web-server-b.yaml ├── Chapter12 ├── decode-secret.sh ├── mysql-database.yaml ├── mysql-firewall.yaml ├── mysql-server.yaml ├── patch.yaml ├── rg.yaml └── values.yaml ├── Chapter13 ├── crypto-miner.yaml ├── escalation.yaml ├── host-volume.yaml └── role.yaml ├── Chapter14 └── sendMessages.py ├── Chapter15 ├── Dockerfile ├── index.html ├── pipeline-ci.yaml ├── pipeline-cicd.yaml └── website │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml │ └── values.yaml ├── LICENSE └── README.md /Chapter01/DockerFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter01/DockerFile -------------------------------------------------------------------------------- /Chapter01/docker-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter01/docker-example.sh -------------------------------------------------------------------------------- /Chapter02/azure-vote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter02/azure-vote.yaml -------------------------------------------------------------------------------- /Chapter03/example-redis-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/example-redis-config.yaml -------------------------------------------------------------------------------- /Chapter03/frontend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/frontend-deployment.yaml -------------------------------------------------------------------------------- /Chapter03/frontend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/frontend-service.yaml -------------------------------------------------------------------------------- /Chapter03/mariadb_statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/mariadb_statefulset.yaml -------------------------------------------------------------------------------- /Chapter03/mariadbss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/mariadbss.yaml -------------------------------------------------------------------------------- /Chapter03/nillsf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/nillsf.yaml -------------------------------------------------------------------------------- /Chapter03/redis-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/redis-config -------------------------------------------------------------------------------- /Chapter03/redis-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/redis-config.yaml -------------------------------------------------------------------------------- /Chapter03/redis-master-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/redis-master-deployment.yaml -------------------------------------------------------------------------------- /Chapter03/redis-master-deployment_Modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/redis-master-deployment_Modified.yaml -------------------------------------------------------------------------------- /Chapter03/redis-master-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/redis-master-service.yaml -------------------------------------------------------------------------------- /Chapter03/redis-replica-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/redis-replica-deployment.yaml -------------------------------------------------------------------------------- /Chapter03/redis-replica-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter03/redis-replica-service.yaml -------------------------------------------------------------------------------- /Chapter04/frontend-image-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter04/frontend-image-patch.yaml -------------------------------------------------------------------------------- /Chapter04/frontend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter04/frontend-service.yaml -------------------------------------------------------------------------------- /Chapter04/guestbook-all-in-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter04/guestbook-all-in-one.yaml -------------------------------------------------------------------------------- /Chapter04/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter04/hpa.yaml -------------------------------------------------------------------------------- /Chapter05/guestbook-all-in-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter05/guestbook-all-in-one.yaml -------------------------------------------------------------------------------- /Chapter06/certificate-issuer-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/certificate-issuer-prod.yaml -------------------------------------------------------------------------------- /Chapter06/certificate-issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/certificate-issuer.yaml -------------------------------------------------------------------------------- /Chapter06/frontend-oauth2-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/frontend-oauth2-ingress.yaml -------------------------------------------------------------------------------- /Chapter06/guestbook-all-in-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/guestbook-all-in-one.yaml -------------------------------------------------------------------------------- /Chapter06/ingress-with-tls-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/ingress-with-tls-prod.yaml -------------------------------------------------------------------------------- /Chapter06/ingress-with-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/ingress-with-tls.yaml -------------------------------------------------------------------------------- /Chapter06/oauth2_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/oauth2_deployment.yaml -------------------------------------------------------------------------------- /Chapter06/oauth2_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/oauth2_ingress.yaml -------------------------------------------------------------------------------- /Chapter06/oauth2_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/oauth2_service.yaml -------------------------------------------------------------------------------- /Chapter06/setup-appgw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/setup-appgw.sh -------------------------------------------------------------------------------- /Chapter06/simple-frontend-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter06/simple-frontend-ingress.yaml -------------------------------------------------------------------------------- /Chapter07/guestbook-all-in-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter07/guestbook-all-in-one.yaml -------------------------------------------------------------------------------- /Chapter07/healthy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter07/healthy.html -------------------------------------------------------------------------------- /Chapter07/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter07/index1.html -------------------------------------------------------------------------------- /Chapter07/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter07/index2.html -------------------------------------------------------------------------------- /Chapter07/testWeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter07/testWeb.sh -------------------------------------------------------------------------------- /Chapter07/webdeploy1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter07/webdeploy1.yaml -------------------------------------------------------------------------------- /Chapter07/webdeploy2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter07/webdeploy2.yaml -------------------------------------------------------------------------------- /Chapter07/webservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter07/webservice.yaml -------------------------------------------------------------------------------- /Chapter08/azure-vote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter08/azure-vote.yaml -------------------------------------------------------------------------------- /Chapter08/clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter08/clusterRole.yaml -------------------------------------------------------------------------------- /Chapter08/clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter08/clusterRoleBinding.yaml -------------------------------------------------------------------------------- /Chapter08/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter08/role.yaml -------------------------------------------------------------------------------- /Chapter08/roleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter08/roleBinding.yaml -------------------------------------------------------------------------------- /Chapter09/deployment-with-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter09/deployment-with-identity.yaml -------------------------------------------------------------------------------- /Chapter09/deployment-without-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter09/deployment-without-identity.yaml -------------------------------------------------------------------------------- /Chapter10/myfirstsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter10/myfirstsecret.yaml -------------------------------------------------------------------------------- /Chapter10/pod-keyvault-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter10/pod-keyvault-env.yaml -------------------------------------------------------------------------------- /Chapter10/pod-keyvault-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter10/pod-keyvault-file.yaml -------------------------------------------------------------------------------- /Chapter10/pod-with-env-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter10/pod-with-env-secrets.yaml -------------------------------------------------------------------------------- /Chapter10/pod-with-vol-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter10/pod-with-vol-secret.yaml -------------------------------------------------------------------------------- /Chapter10/secretproviderclass-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter10/secretproviderclass-env.yaml -------------------------------------------------------------------------------- /Chapter10/secretproviderclass-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter10/secretproviderclass-file.yaml -------------------------------------------------------------------------------- /Chapter10/secrettoken.txt: -------------------------------------------------------------------------------- 1 | superSecretToken 2 | -------------------------------------------------------------------------------- /Chapter10/secreturl.txt: -------------------------------------------------------------------------------- 1 | https://my-url-location.topsecret.com 2 | -------------------------------------------------------------------------------- /Chapter11/allow-a-to-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter11/allow-a-to-b.yaml -------------------------------------------------------------------------------- /Chapter11/deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter11/deny-all.yaml -------------------------------------------------------------------------------- /Chapter11/front-end-service-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter11/front-end-service-internal.yaml -------------------------------------------------------------------------------- /Chapter11/front-end-service-secured.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter11/front-end-service-secured.yaml -------------------------------------------------------------------------------- /Chapter11/front-end-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter11/front-end-service.yaml -------------------------------------------------------------------------------- /Chapter11/guestbook-without-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter11/guestbook-without-service.yaml -------------------------------------------------------------------------------- /Chapter11/web-server-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter11/web-server-a.yaml -------------------------------------------------------------------------------- /Chapter11/web-server-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter11/web-server-b.yaml -------------------------------------------------------------------------------- /Chapter12/decode-secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter12/decode-secret.sh -------------------------------------------------------------------------------- /Chapter12/mysql-database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter12/mysql-database.yaml -------------------------------------------------------------------------------- /Chapter12/mysql-firewall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter12/mysql-firewall.yaml -------------------------------------------------------------------------------- /Chapter12/mysql-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter12/mysql-server.yaml -------------------------------------------------------------------------------- /Chapter12/patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter12/patch.yaml -------------------------------------------------------------------------------- /Chapter12/rg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter12/rg.yaml -------------------------------------------------------------------------------- /Chapter12/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter12/values.yaml -------------------------------------------------------------------------------- /Chapter13/crypto-miner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter13/crypto-miner.yaml -------------------------------------------------------------------------------- /Chapter13/escalation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter13/escalation.yaml -------------------------------------------------------------------------------- /Chapter13/host-volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter13/host-volume.yaml -------------------------------------------------------------------------------- /Chapter13/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter13/role.yaml -------------------------------------------------------------------------------- /Chapter14/sendMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter14/sendMessages.py -------------------------------------------------------------------------------- /Chapter15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/Dockerfile -------------------------------------------------------------------------------- /Chapter15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/index.html -------------------------------------------------------------------------------- /Chapter15/pipeline-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/pipeline-ci.yaml -------------------------------------------------------------------------------- /Chapter15/pipeline-cicd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/pipeline-cicd.yaml -------------------------------------------------------------------------------- /Chapter15/website/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/website/.helmignore -------------------------------------------------------------------------------- /Chapter15/website/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/website/Chart.yaml -------------------------------------------------------------------------------- /Chapter15/website/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/website/templates/_helpers.tpl -------------------------------------------------------------------------------- /Chapter15/website/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/website/templates/deployment.yaml -------------------------------------------------------------------------------- /Chapter15/website/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/website/templates/service.yaml -------------------------------------------------------------------------------- /Chapter15/website/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/website/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /Chapter15/website/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/Chapter15/website/values.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Kubernetes-on-Azure-Third-Edition/HEAD/README.md --------------------------------------------------------------------------------