gitextract_yj86q4zf/ ├── .gitignore ├── AGENDA.md ├── LICENSE ├── README.md ├── history/ │ ├── 03012019/ │ │ └── oreilly.txt │ ├── 09282018/ │ │ └── history.txt │ ├── 11042017/ │ │ └── history.txt │ ├── 14022016/ │ │ ├── history-1.txt │ │ └── history.txt │ ├── 14072017/ │ │ └── 14072017.txt │ ├── 16022016/ │ │ ├── history-1.txt │ │ └── history.txt │ ├── 16052017/ │ │ └── history.txt │ ├── 21022017/ │ │ └── history.txt │ ├── 22082017/ │ │ └── 22082017.txt │ ├── 23052018/ │ │ └── history.txt │ └── 7062018/ │ └── history.txt ├── kusto/ │ ├── base/ │ │ ├── kustomization.yaml │ │ └── pod.yaml │ └── overlays/ │ ├── dev/ │ │ └── kustomization.yaml │ └── prod/ │ └── kustomization.yaml ├── manifests/ │ ├── 01-pod/ │ │ ├── README.md │ │ ├── busybox.yaml │ │ ├── foobar.yaml │ │ ├── lifecycle.yaml │ │ ├── multi.yaml │ │ └── redis.yaml │ ├── 02-quota/ │ │ ├── README.md │ │ ├── quota.yaml │ │ ├── rq.yaml │ │ └── rq.yaml.fmn │ ├── 03-rs/ │ │ ├── README.md │ │ ├── redis-rc.yaml │ │ ├── rs-example.yml │ │ └── rs.yaml │ ├── 04-services/ │ │ ├── README.md │ │ ├── headless.yaml │ │ └── svc.yaml │ ├── 05-ingress-controller/ │ │ ├── README.md │ │ ├── backend.yaml │ │ ├── frontend.yaml │ │ ├── game.yaml │ │ ├── ghost.yaml │ │ ├── ingress.yaml │ │ └── wordpress.yaml │ ├── 06-volumes/ │ │ ├── README.md │ │ ├── cm-vol.yaml │ │ ├── configmap.yaml │ │ ├── foobar.md │ │ ├── hostpath.yaml │ │ ├── mysql.yaml │ │ ├── oreilly/ │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates/ │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── pv.yaml │ │ ├── pvc.yaml │ │ └── volumes.yaml │ ├── 07-crd/ │ │ ├── README.md │ │ ├── bd.yml │ │ ├── database.yml │ │ └── db.yml │ ├── 08-security/ │ │ ├── README.md │ │ ├── nginx.yaml │ │ └── test.yaml │ ├── README.md │ ├── canary/ │ │ ├── README.md │ │ ├── blue-deploy.yaml │ │ ├── blue-files/ │ │ │ └── index.html │ │ ├── configmap.sh │ │ ├── red-deploy.yaml │ │ ├── red-files/ │ │ │ └── index.html │ │ ├── redblue-ingress.yaml │ │ └── redblue-svc.yaml │ ├── configmaps/ │ │ ├── README.md │ │ ├── configmap.yaml │ │ ├── foobar.yaml │ │ ├── pod.yaml │ │ └── update-configmap.sh │ ├── init-container/ │ │ └── init.yaml │ ├── logging/ │ │ ├── allinone.yaml │ │ ├── configs.yaml │ │ ├── dashboards.json │ │ ├── dashboards.yaml │ │ ├── grafana.ini │ │ ├── grafana.json │ │ └── grafana2.json │ ├── nodeselector/ │ │ └── pod-to-arch-amd64.yaml │ ├── old/ │ │ └── 1605207/ │ │ ├── configmap.yaml │ │ ├── foobar.yml │ │ ├── game-svc.yml │ │ ├── game.yml │ │ ├── hostpath.yaml │ │ ├── mysql.yml │ │ ├── nb.yml │ │ ├── notebooks.yml │ │ ├── pvc.yaml │ │ └── volumes.yaml │ ├── scheduling/ │ │ ├── README.md │ │ ├── binding.json │ │ ├── foobar.yaml │ │ ├── redis-sched.yaml │ │ ├── redis-selector.yaml │ │ ├── redis.yaml │ │ └── scheduler.py │ ├── security/ │ │ ├── openssl-generate-certs.sh │ │ └── pawn.yaml │ └── wordpress/ │ ├── march13/ │ │ ├── mysql-svc.yaml │ │ ├── mysql.yaml │ │ ├── quota.yaml │ │ ├── wordpress/ │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates/ │ │ │ │ ├── mysql-svc.yaml │ │ │ │ ├── mysql.yaml │ │ │ │ ├── quota.yaml │ │ │ │ ├── wordpress-svc.yaml │ │ │ │ └── wordpress.yaml │ │ │ └── values.yaml │ │ ├── wordpress-ns.yaml │ │ ├── wordpress-svc.yaml │ │ └── wordpress.yaml │ ├── mysql-secret.yaml │ ├── mysql.yaml │ ├── secret.json │ ├── wordpress/ │ │ ├── mysql-svc.yaml │ │ ├── mysql.yaml │ │ ├── wp-svc.yaml │ │ └── wp.yaml │ ├── wordpress-secret.yaml │ ├── wordpress.yaml │ ├── wp-svc.yaml │ └── wp.yaml ├── monitoring/ │ ├── grafana-statefulset.yaml │ ├── grafana-svc.yaml │ ├── monitoring-namespace.yaml │ ├── node-exporter-daemonset.yaml │ ├── node-exporter-svc.yaml │ ├── prometheus-config.yaml │ ├── prometheus-rbac.yaml │ ├── prometheus-statefulset.yaml │ └── prometheus-svc.yaml ├── scripts/ │ ├── create_binding.py │ ├── create_cronjob.py │ ├── create_pod.py │ ├── k3d.sh │ ├── k8s.sh │ ├── kk8s.sh │ ├── kopf/ │ │ ├── README.md │ │ ├── crd.yaml │ │ ├── example.py │ │ └── obj.yaml │ └── kubeadminit.sh └── template/ └── jinja-test.py