├── .gitignore ├── README.md ├── daemonset ├── README.md └── ds.yaml ├── deployment ├── README.md └── depl.yaml ├── hpa ├── README.md └── hpa.yaml ├── job ├── cronjob.yaml └── job.yaml ├── minikube └── README.md ├── pod ├── README.md └── pod.yaml ├── service ├── README.md ├── pod-with-label-1.yaml ├── pod-with-label-2-with-probe.yaml ├── pod-with-label-2.yaml ├── pod-with-label-3.yaml └── svc.yaml ├── statefulset ├── storageclass-for-gce.yaml ├── storageclass-for-minikube.yaml └── sts.yaml └── volume ├── README.md ├── cfgmap.yaml ├── secret.yaml └── volume.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /daemonset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/daemonset/README.md -------------------------------------------------------------------------------- /daemonset/ds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/daemonset/ds.yaml -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/deployment/README.md -------------------------------------------------------------------------------- /deployment/depl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/deployment/depl.yaml -------------------------------------------------------------------------------- /hpa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/hpa/README.md -------------------------------------------------------------------------------- /hpa/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/hpa/hpa.yaml -------------------------------------------------------------------------------- /job/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/job/cronjob.yaml -------------------------------------------------------------------------------- /job/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/job/job.yaml -------------------------------------------------------------------------------- /minikube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/minikube/README.md -------------------------------------------------------------------------------- /pod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/pod/README.md -------------------------------------------------------------------------------- /pod/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/pod/pod.yaml -------------------------------------------------------------------------------- /service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/service/README.md -------------------------------------------------------------------------------- /service/pod-with-label-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/service/pod-with-label-1.yaml -------------------------------------------------------------------------------- /service/pod-with-label-2-with-probe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/service/pod-with-label-2-with-probe.yaml -------------------------------------------------------------------------------- /service/pod-with-label-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/service/pod-with-label-2.yaml -------------------------------------------------------------------------------- /service/pod-with-label-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/service/pod-with-label-3.yaml -------------------------------------------------------------------------------- /service/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/service/svc.yaml -------------------------------------------------------------------------------- /statefulset/storageclass-for-gce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/statefulset/storageclass-for-gce.yaml -------------------------------------------------------------------------------- /statefulset/storageclass-for-minikube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/statefulset/storageclass-for-minikube.yaml -------------------------------------------------------------------------------- /statefulset/sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/statefulset/sts.yaml -------------------------------------------------------------------------------- /volume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/volume/README.md -------------------------------------------------------------------------------- /volume/cfgmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/volume/cfgmap.yaml -------------------------------------------------------------------------------- /volume/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/volume/secret.yaml -------------------------------------------------------------------------------- /volume/volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life1347/k8s-tutorial/HEAD/volume/volume.yaml --------------------------------------------------------------------------------