├── Chapter10 ├── 01_replicationcontroller-example │ └── nginx-replicationcontroller.yaml └── 02_replicaset-example │ ├── nginx-pod-bare.yaml │ ├── nginx-replicaset-expressions.yaml │ ├── nginx-replicaset-livenessprobe.yaml │ └── nginx-replicaset.yaml ├── Chapter11 └── 01_deployment-example │ ├── nginx-deployment-readinessprobe.yaml │ ├── nginx-deployment-rollingupdate.yaml │ ├── nginx-deployment.yaml │ └── nginx-service.yaml ├── Chapter12 └── 01_statefulset-example │ ├── nginx-client-service.yaml │ ├── nginx-headless-service.yaml │ ├── nginx-statefulset-rollingupdate.yaml │ └── nginx-statefulset.yaml ├── Chapter13 ├── 01_daemonset-example │ ├── nginx-daemon-headless-service.yaml │ └── nginx-daemonset.yaml └── 02_daemonset-prometheus-nodeexporter │ └── node-exporter.yaml ├── Chapter17 └── 01_helm │ └── bitnami │ └── wordpress │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── ci │ ├── ct-values.yaml │ ├── ingress-wildcard-values.yaml │ ├── values-hpa-pdb.yaml │ ├── values-memcached.yaml │ └── values-metrics-and-ingress.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── externaldb-secrets.yaml │ ├── extra-list.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── metrics-svc.yaml │ ├── pdb.yaml │ ├── postinit-configmap.yaml │ ├── pvc.yaml │ ├── secrets.yaml │ ├── servicemonitor.yaml │ ├── svc.yaml │ ├── tests │ │ └── test-mariadb-connection.yaml │ └── tls-secrets.yaml │ ├── values.schema.json │ └── values.yaml ├── Chapter18 ├── 01_serviceaccount │ ├── example-account-serviceaccount.yaml │ ├── pod-reader-role.yaml │ └── read-pods-rolebinding.yaml ├── 02_rbac │ ├── pod-logger-serviceaccount.yaml │ ├── pod-logger-static-pod.yaml │ ├── pod-reader-role.yaml │ └── read-pods-rolebinding.yaml └── 03_aks-aad-rbac │ └── aks-pod-writer.json ├── Chapter19 ├── 01_nodename │ └── nginx-deployment.yaml ├── 02_nodeselector │ └── nginx-deployment.yaml ├── 03_affinity │ └── nginx-deployment.yaml └── 04_taints │ └── nginx-deployment.yaml ├── Chapter20 ├── 01_resource-requests-and-limits │ └── nginx-deployment.yaml ├── 02_vpa │ ├── hamster-deployment.yaml │ └── hamster-vpa.yaml ├── 03_hpa │ ├── deployment-reader-role.yaml │ ├── elastic-hamster-deployment.yaml │ ├── elastic-hamster-hpa.yaml │ ├── elastic-hamster-serviceaccount.yaml │ └── read-deployments-rolebinding.yaml └── 04_clusterautoscaler │ ├── deployment-reader-role.yaml │ ├── elastic-hamster-deployment.yaml │ ├── elastic-hamster-hpa.yaml │ ├── elastic-hamster-serviceaccount.yaml │ └── read-deployments-rolebinding.yaml ├── Chapter21 ├── 01_services-recap │ ├── nginx-deployment.yaml │ ├── nginx-service-clusterip.yaml │ └── nginx-service-nodeport.yaml ├── 02_ingress │ ├── example-ingress.yaml │ ├── example-services.yaml │ └── nginx-ingresscontroller-cloud.yaml └── 03_aks-agic │ ├── example-ingress.yaml │ └── example-services.yaml ├── LICENSE └── README.md /Chapter10/01_replicationcontroller-example/nginx-replicationcontroller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter10/01_replicationcontroller-example/nginx-replicationcontroller.yaml -------------------------------------------------------------------------------- /Chapter10/02_replicaset-example/nginx-pod-bare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter10/02_replicaset-example/nginx-pod-bare.yaml -------------------------------------------------------------------------------- /Chapter10/02_replicaset-example/nginx-replicaset-expressions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter10/02_replicaset-example/nginx-replicaset-expressions.yaml -------------------------------------------------------------------------------- /Chapter10/02_replicaset-example/nginx-replicaset-livenessprobe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter10/02_replicaset-example/nginx-replicaset-livenessprobe.yaml -------------------------------------------------------------------------------- /Chapter10/02_replicaset-example/nginx-replicaset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter10/02_replicaset-example/nginx-replicaset.yaml -------------------------------------------------------------------------------- /Chapter11/01_deployment-example/nginx-deployment-readinessprobe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter11/01_deployment-example/nginx-deployment-readinessprobe.yaml -------------------------------------------------------------------------------- /Chapter11/01_deployment-example/nginx-deployment-rollingupdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter11/01_deployment-example/nginx-deployment-rollingupdate.yaml -------------------------------------------------------------------------------- /Chapter11/01_deployment-example/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter11/01_deployment-example/nginx-deployment.yaml -------------------------------------------------------------------------------- /Chapter11/01_deployment-example/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter11/01_deployment-example/nginx-service.yaml -------------------------------------------------------------------------------- /Chapter12/01_statefulset-example/nginx-client-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter12/01_statefulset-example/nginx-client-service.yaml -------------------------------------------------------------------------------- /Chapter12/01_statefulset-example/nginx-headless-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter12/01_statefulset-example/nginx-headless-service.yaml -------------------------------------------------------------------------------- /Chapter12/01_statefulset-example/nginx-statefulset-rollingupdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter12/01_statefulset-example/nginx-statefulset-rollingupdate.yaml -------------------------------------------------------------------------------- /Chapter12/01_statefulset-example/nginx-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter12/01_statefulset-example/nginx-statefulset.yaml -------------------------------------------------------------------------------- /Chapter13/01_daemonset-example/nginx-daemon-headless-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter13/01_daemonset-example/nginx-daemon-headless-service.yaml -------------------------------------------------------------------------------- /Chapter13/01_daemonset-example/nginx-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter13/01_daemonset-example/nginx-daemonset.yaml -------------------------------------------------------------------------------- /Chapter13/02_daemonset-prometheus-nodeexporter/node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter13/02_daemonset-prometheus-nodeexporter/node-exporter.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/.helmignore -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/Chart.lock -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/Chart.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/README.md -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/ci/ct-values.yaml: -------------------------------------------------------------------------------- 1 | service: 2 | type: ClusterIP 3 | -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/ci/ingress-wildcard-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/ci/ingress-wildcard-values.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/ci/values-hpa-pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/ci/values-hpa-pdb.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/ci/values-memcached.yaml: -------------------------------------------------------------------------------- 1 | memcached: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/ci/values-metrics-and-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/ci/values-metrics-and-ingress.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/NOTES.txt -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/_helpers.tpl -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/deployment.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/externaldb-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/externaldb-secrets.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/extra-list.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/hpa.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/ingress.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/metrics-svc.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/pdb.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/postinit-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/postinit-configmap.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/pvc.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/secrets.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/svc.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/tests/test-mariadb-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/tests/test-mariadb-connection.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/templates/tls-secrets.yaml -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/values.schema.json -------------------------------------------------------------------------------- /Chapter17/01_helm/bitnami/wordpress/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter17/01_helm/bitnami/wordpress/values.yaml -------------------------------------------------------------------------------- /Chapter18/01_serviceaccount/example-account-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter18/01_serviceaccount/example-account-serviceaccount.yaml -------------------------------------------------------------------------------- /Chapter18/01_serviceaccount/pod-reader-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter18/01_serviceaccount/pod-reader-role.yaml -------------------------------------------------------------------------------- /Chapter18/01_serviceaccount/read-pods-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter18/01_serviceaccount/read-pods-rolebinding.yaml -------------------------------------------------------------------------------- /Chapter18/02_rbac/pod-logger-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter18/02_rbac/pod-logger-serviceaccount.yaml -------------------------------------------------------------------------------- /Chapter18/02_rbac/pod-logger-static-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter18/02_rbac/pod-logger-static-pod.yaml -------------------------------------------------------------------------------- /Chapter18/02_rbac/pod-reader-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter18/02_rbac/pod-reader-role.yaml -------------------------------------------------------------------------------- /Chapter18/02_rbac/read-pods-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter18/02_rbac/read-pods-rolebinding.yaml -------------------------------------------------------------------------------- /Chapter18/03_aks-aad-rbac/aks-pod-writer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter18/03_aks-aad-rbac/aks-pod-writer.json -------------------------------------------------------------------------------- /Chapter19/01_nodename/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter19/01_nodename/nginx-deployment.yaml -------------------------------------------------------------------------------- /Chapter19/02_nodeselector/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter19/02_nodeselector/nginx-deployment.yaml -------------------------------------------------------------------------------- /Chapter19/03_affinity/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter19/03_affinity/nginx-deployment.yaml -------------------------------------------------------------------------------- /Chapter19/04_taints/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter19/04_taints/nginx-deployment.yaml -------------------------------------------------------------------------------- /Chapter20/01_resource-requests-and-limits/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/01_resource-requests-and-limits/nginx-deployment.yaml -------------------------------------------------------------------------------- /Chapter20/02_vpa/hamster-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/02_vpa/hamster-deployment.yaml -------------------------------------------------------------------------------- /Chapter20/02_vpa/hamster-vpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/02_vpa/hamster-vpa.yaml -------------------------------------------------------------------------------- /Chapter20/03_hpa/deployment-reader-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/03_hpa/deployment-reader-role.yaml -------------------------------------------------------------------------------- /Chapter20/03_hpa/elastic-hamster-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/03_hpa/elastic-hamster-deployment.yaml -------------------------------------------------------------------------------- /Chapter20/03_hpa/elastic-hamster-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/03_hpa/elastic-hamster-hpa.yaml -------------------------------------------------------------------------------- /Chapter20/03_hpa/elastic-hamster-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/03_hpa/elastic-hamster-serviceaccount.yaml -------------------------------------------------------------------------------- /Chapter20/03_hpa/read-deployments-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/03_hpa/read-deployments-rolebinding.yaml -------------------------------------------------------------------------------- /Chapter20/04_clusterautoscaler/deployment-reader-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/04_clusterautoscaler/deployment-reader-role.yaml -------------------------------------------------------------------------------- /Chapter20/04_clusterautoscaler/elastic-hamster-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/04_clusterautoscaler/elastic-hamster-deployment.yaml -------------------------------------------------------------------------------- /Chapter20/04_clusterautoscaler/elastic-hamster-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/04_clusterautoscaler/elastic-hamster-hpa.yaml -------------------------------------------------------------------------------- /Chapter20/04_clusterautoscaler/elastic-hamster-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/04_clusterautoscaler/elastic-hamster-serviceaccount.yaml -------------------------------------------------------------------------------- /Chapter20/04_clusterautoscaler/read-deployments-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter20/04_clusterautoscaler/read-deployments-rolebinding.yaml -------------------------------------------------------------------------------- /Chapter21/01_services-recap/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter21/01_services-recap/nginx-deployment.yaml -------------------------------------------------------------------------------- /Chapter21/01_services-recap/nginx-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter21/01_services-recap/nginx-service-clusterip.yaml -------------------------------------------------------------------------------- /Chapter21/01_services-recap/nginx-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter21/01_services-recap/nginx-service-nodeport.yaml -------------------------------------------------------------------------------- /Chapter21/02_ingress/example-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter21/02_ingress/example-ingress.yaml -------------------------------------------------------------------------------- /Chapter21/02_ingress/example-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter21/02_ingress/example-services.yaml -------------------------------------------------------------------------------- /Chapter21/02_ingress/nginx-ingresscontroller-cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter21/02_ingress/nginx-ingresscontroller-cloud.yaml -------------------------------------------------------------------------------- /Chapter21/03_aks-agic/example-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter21/03_aks-agic/example-ingress.yaml -------------------------------------------------------------------------------- /Chapter21/03_aks-agic/example-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/Chapter21/03_aks-agic/example-services.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/The-Kubernetes-Bible/HEAD/README.md --------------------------------------------------------------------------------