├── LICENSE ├── README.md ├── exercise.adoc ├── exercise.html ├── images ├── dashboard.png ├── nodeport.png ├── rolling-update.png ├── service.png ├── volume.png └── without-pdb.png ├── index.adoc ├── index.html ├── introduction-to-kubernetes.adoc ├── introduction-to-kubernetes.html ├── manifests ├── bastion.yaml ├── nginx-deployment.yaml ├── nginx-pod.yaml ├── nginx-replicaset.yaml ├── nginx-service-nodeport.yaml └── nginx-service.yaml ├── more-introduction-to-kubernetes.adoc └── more-introduction-to-kubernetes.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /exercise.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/exercise.adoc -------------------------------------------------------------------------------- /exercise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/exercise.html -------------------------------------------------------------------------------- /images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/images/dashboard.png -------------------------------------------------------------------------------- /images/nodeport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/images/nodeport.png -------------------------------------------------------------------------------- /images/rolling-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/images/rolling-update.png -------------------------------------------------------------------------------- /images/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/images/service.png -------------------------------------------------------------------------------- /images/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/images/volume.png -------------------------------------------------------------------------------- /images/without-pdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/images/without-pdb.png -------------------------------------------------------------------------------- /index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/index.adoc -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/index.html -------------------------------------------------------------------------------- /introduction-to-kubernetes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/introduction-to-kubernetes.adoc -------------------------------------------------------------------------------- /introduction-to-kubernetes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/introduction-to-kubernetes.html -------------------------------------------------------------------------------- /manifests/bastion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/manifests/bastion.yaml -------------------------------------------------------------------------------- /manifests/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/manifests/nginx-deployment.yaml -------------------------------------------------------------------------------- /manifests/nginx-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/manifests/nginx-pod.yaml -------------------------------------------------------------------------------- /manifests/nginx-replicaset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/manifests/nginx-replicaset.yaml -------------------------------------------------------------------------------- /manifests/nginx-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/manifests/nginx-service-nodeport.yaml -------------------------------------------------------------------------------- /manifests/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/manifests/nginx-service.yaml -------------------------------------------------------------------------------- /more-introduction-to-kubernetes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/more-introduction-to-kubernetes.adoc -------------------------------------------------------------------------------- /more-introduction-to-kubernetes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybozu/introduction-to-kubernetes/HEAD/more-introduction-to-kubernetes.html --------------------------------------------------------------------------------