├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── LICENSE ├── README.md ├── _config.yml ├── create-image.sh ├── data ├── debian │ ├── busybox │ │ ├── network-config │ │ ├── post-config-interfaces │ │ ├── post-config-resources │ │ └── user-data │ ├── etcd │ │ ├── network-config │ │ ├── post-config-interfaces │ │ ├── post-config-resources │ │ └── user-data │ ├── gate │ │ ├── network-config │ │ ├── post-config-interfaces │ │ ├── post-config-resources │ │ └── user-data │ ├── glus │ │ ├── network-config │ │ ├── post-config-interfaces │ │ ├── post-config-resources │ │ ├── post-config-storages │ │ └── user-data │ ├── hapx │ │ ├── network-config │ │ ├── post-config-interfaces │ │ ├── post-config-resources │ │ └── user-data │ ├── kube-mast │ │ ├── network-config │ │ ├── post-config-interfaces │ │ └── post-config-resources │ ├── kube-node │ │ ├── network-config │ │ ├── post-config-interfaces │ │ └── post-config-resources │ ├── kube │ │ └── user-data │ ├── meta-data │ └── user-data └── ubuntu │ ├── busybox │ ├── network-config │ ├── post-config-interfaces │ ├── post-config-resources │ └── user-data │ ├── etcd │ ├── network-config │ ├── post-config-interfaces │ ├── post-config-resources │ └── user-data │ ├── gate │ ├── network-config │ ├── post-config-interfaces │ ├── post-config-resources │ └── user-data │ ├── glus │ ├── network-config │ ├── post-config-interfaces │ ├── post-config-resources │ ├── post-config-storages │ └── user-data │ ├── hapx │ ├── network-config │ ├── post-config-interfaces │ ├── post-config-resources │ └── user-data │ ├── kube-mast │ ├── network-config │ ├── post-config-interfaces │ └── post-config-resources │ ├── kube-node │ ├── network-config │ ├── post-config-interfaces │ └── post-config-resources │ ├── kube │ └── user-data │ ├── meta-data │ └── user-data ├── documentation ├── ca-external-infrastructure.md ├── common-cluster.md ├── create-linux-image.md ├── etcd.md ├── gluster.md ├── haproxy-cluster.md ├── images │ ├── brace-yourselves-kubernetes.jpeg │ ├── brief-container-history.png │ ├── certificate-01.png │ ├── certificate-02.png │ ├── cloud-init.png │ ├── cluster-ha.png │ ├── cluster-load-balancer.png │ ├── cluster-parallel.png │ ├── common-cluster.png │ ├── corosync-interaction-join.gif │ ├── corosync-interaction-leave.gif │ ├── create-image.jpeg │ ├── dhcp-interaction.gif │ ├── docker-logo.png │ ├── etcd-failure-tolerance.png │ ├── etcd-logo.png │ ├── flannel-logo.png │ ├── gateway-diagram.png │ ├── gluster-create-volume.gif │ ├── gluster-dispersed.png │ ├── gluster-distributed.png │ ├── gluster-ec.gif │ ├── gluster-replicated.png │ ├── grub-configure-01.png │ ├── grub-configure-02.png │ ├── grub-configure-03.png │ ├── haproxy-cluster-stats-masters.png │ ├── haproxy-cluster-stats.png │ ├── haproxy-cluster.gif │ ├── heketi-create-volume.gif │ ├── heketi-expand-volume.gif │ ├── intermediate-ca.svg │ ├── kube-approaches-master.png │ ├── kube-approaches-worker.png │ ├── kube-architecture-diagram.png │ ├── kube-control-plane-services-external-etcd.png │ ├── kube-dashboard-auth.png │ ├── kube-dashboard-singin.png │ ├── kube-dashboard.png │ ├── kube-deployment.png │ ├── kube-etcd.gif │ ├── kube-external-etcd.png │ ├── kube-keywords.png │ ├── kube-kubeadm-ha-topology-external-etcd.png │ ├── kube-kubeadm-ha-topology-stacked-etcd.png │ ├── kube-kubectl.png │ ├── kube-logo.png │ ├── kube-master-overview.png │ ├── kube-namespace.png │ ├── kube-network-model-master-to-worker.png │ ├── kube-network-model-pod-routing-traffic-across-different-hosts.png │ ├── kube-network-model-pod-routing-traffic-on-the-same-host.png │ ├── kube-network-model-pod-to-internet.png │ ├── kube-network-model-pod-to-pod.png │ ├── kube-network-model-vxlan.png │ ├── kube-network-model-worker-to-worker.png │ ├── kube-network-model.png │ ├── kube-pod-creation-flow.png │ ├── kube-pods.png │ ├── kube-service-clusterip.png │ ├── kube-service-loadbalancer.png │ ├── kube-service-nodeport.png │ ├── kube-service.png │ ├── kube-services.png │ ├── kube-stacked-etcd.png │ ├── kube-volumes.png │ ├── kube-worker-overview.png │ ├── kubernetes-cloud-flavors.png │ ├── linux-image.png │ ├── locales-default.png │ ├── locales-select.png │ ├── lvm-expand-concept.gif │ ├── metallb-logo.png │ ├── networking-diagram.png │ ├── networking-dns.gif │ ├── networking-gateway.png │ ├── networking-nat.gif │ ├── openssl-logo.png │ ├── resolvconf-confirm-01.png │ ├── resolvconf-confirm-02.png │ ├── technologies.png │ ├── under-the-hood.jpg │ ├── virtualbox-gui.png │ └── virtualization-lxc.png ├── kube-dashboard.md ├── kube-demo-application.md ├── kube-demo-storageclass.md ├── kube-etcd.md ├── kube-flannel.md ├── kube-heketi.md ├── kube-masters-and-workers.md ├── kube-masters-external-etcd.md ├── kube-masters.md ├── kube-metallb.md ├── kube-overview.md ├── kube-workers.md ├── kube.md ├── linux-image.md ├── networking.md ├── objective.md ├── running-vms.md ├── starting-setup.md └── technologies.md ├── etc └── ssh │ ├── ca │ └── ca.pub ├── gluster ├── glusterfs-daemonset.yaml ├── glusterfs-simple-provisioner.yaml ├── rbac.yaml └── storage-class.yaml ├── master ├── kubeadm-config-external-etcd.yaml └── kubeadm-config.yaml ├── metallb └── metallb-config.yaml ├── pacemaker └── pacemaker.config ├── post-config-interfaces.sh ├── post-config-resources.sh ├── post-config-storages.sh └── services ├── kube-service-clusterip.yaml ├── kube-service-load-balancer.yaml └── kube-service-nodeport.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | vms/* 2 | 3 | .vscode/** -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/_config.yml -------------------------------------------------------------------------------- /create-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/create-image.sh -------------------------------------------------------------------------------- /data/debian/busybox/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/busybox/network-config -------------------------------------------------------------------------------- /data/debian/busybox/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/busybox/post-config-interfaces -------------------------------------------------------------------------------- /data/debian/busybox/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 1 3 | memory: 512 -------------------------------------------------------------------------------- /data/debian/busybox/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/busybox/user-data -------------------------------------------------------------------------------- /data/debian/etcd/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/etcd/network-config -------------------------------------------------------------------------------- /data/debian/etcd/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/etcd/post-config-interfaces -------------------------------------------------------------------------------- /data/debian/etcd/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 2 3 | memory: 2048 -------------------------------------------------------------------------------- /data/debian/etcd/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/etcd/user-data -------------------------------------------------------------------------------- /data/debian/gate/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/gate/network-config -------------------------------------------------------------------------------- /data/debian/gate/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/gate/post-config-interfaces -------------------------------------------------------------------------------- /data/debian/gate/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 1 3 | memory: 512 -------------------------------------------------------------------------------- /data/debian/gate/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/gate/user-data -------------------------------------------------------------------------------- /data/debian/glus/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/glus/network-config -------------------------------------------------------------------------------- /data/debian/glus/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/glus/post-config-interfaces -------------------------------------------------------------------------------- /data/debian/glus/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 2 3 | memory: 2048 -------------------------------------------------------------------------------- /data/debian/glus/post-config-storages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/glus/post-config-storages -------------------------------------------------------------------------------- /data/debian/glus/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/glus/user-data -------------------------------------------------------------------------------- /data/debian/hapx/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/hapx/network-config -------------------------------------------------------------------------------- /data/debian/hapx/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/hapx/post-config-interfaces -------------------------------------------------------------------------------- /data/debian/hapx/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 1 3 | memory: 512 -------------------------------------------------------------------------------- /data/debian/hapx/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/hapx/user-data -------------------------------------------------------------------------------- /data/debian/kube-mast/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/kube-mast/network-config -------------------------------------------------------------------------------- /data/debian/kube-mast/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/kube-mast/post-config-interfaces -------------------------------------------------------------------------------- /data/debian/kube-mast/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 2 3 | memory: 2048 -------------------------------------------------------------------------------- /data/debian/kube-node/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/kube-node/network-config -------------------------------------------------------------------------------- /data/debian/kube-node/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/kube-node/post-config-interfaces -------------------------------------------------------------------------------- /data/debian/kube-node/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 2 3 | memory: 2048 -------------------------------------------------------------------------------- /data/debian/kube/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/kube/user-data -------------------------------------------------------------------------------- /data/debian/meta-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/meta-data -------------------------------------------------------------------------------- /data/debian/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/debian/user-data -------------------------------------------------------------------------------- /data/ubuntu/busybox/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/busybox/network-config -------------------------------------------------------------------------------- /data/ubuntu/busybox/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/busybox/post-config-interfaces -------------------------------------------------------------------------------- /data/ubuntu/busybox/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 1 3 | memory: 512 4 | -------------------------------------------------------------------------------- /data/ubuntu/busybox/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/busybox/user-data -------------------------------------------------------------------------------- /data/ubuntu/etcd/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/etcd/network-config -------------------------------------------------------------------------------- /data/ubuntu/etcd/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/etcd/post-config-interfaces -------------------------------------------------------------------------------- /data/ubuntu/etcd/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 2 3 | memory: 2048 -------------------------------------------------------------------------------- /data/ubuntu/etcd/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/etcd/user-data -------------------------------------------------------------------------------- /data/ubuntu/gate/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/gate/network-config -------------------------------------------------------------------------------- /data/ubuntu/gate/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/gate/post-config-interfaces -------------------------------------------------------------------------------- /data/ubuntu/gate/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 1 3 | memory: 512 -------------------------------------------------------------------------------- /data/ubuntu/gate/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/gate/user-data -------------------------------------------------------------------------------- /data/ubuntu/glus/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/glus/network-config -------------------------------------------------------------------------------- /data/ubuntu/glus/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/glus/post-config-interfaces -------------------------------------------------------------------------------- /data/ubuntu/glus/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 2 3 | memory: 2048 -------------------------------------------------------------------------------- /data/ubuntu/glus/post-config-storages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/glus/post-config-storages -------------------------------------------------------------------------------- /data/ubuntu/glus/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/glus/user-data -------------------------------------------------------------------------------- /data/ubuntu/hapx/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/hapx/network-config -------------------------------------------------------------------------------- /data/ubuntu/hapx/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/hapx/post-config-interfaces -------------------------------------------------------------------------------- /data/ubuntu/hapx/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 1 3 | memory: 512 -------------------------------------------------------------------------------- /data/ubuntu/hapx/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/hapx/user-data -------------------------------------------------------------------------------- /data/ubuntu/kube-mast/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/kube-mast/network-config -------------------------------------------------------------------------------- /data/ubuntu/kube-mast/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/kube-mast/post-config-interfaces -------------------------------------------------------------------------------- /data/ubuntu/kube-mast/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 2 3 | memory: 2048 -------------------------------------------------------------------------------- /data/ubuntu/kube-node/network-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/kube-node/network-config -------------------------------------------------------------------------------- /data/ubuntu/kube-node/post-config-interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/kube-node/post-config-interfaces -------------------------------------------------------------------------------- /data/ubuntu/kube-node/post-config-resources: -------------------------------------------------------------------------------- 1 | --- 2 | processors: 2 3 | memory: 2048 4 | -------------------------------------------------------------------------------- /data/ubuntu/kube/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/kube/user-data -------------------------------------------------------------------------------- /data/ubuntu/meta-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/meta-data -------------------------------------------------------------------------------- /data/ubuntu/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/data/ubuntu/user-data -------------------------------------------------------------------------------- /documentation/ca-external-infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/ca-external-infrastructure.md -------------------------------------------------------------------------------- /documentation/common-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/common-cluster.md -------------------------------------------------------------------------------- /documentation/create-linux-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/create-linux-image.md -------------------------------------------------------------------------------- /documentation/etcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/etcd.md -------------------------------------------------------------------------------- /documentation/gluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/gluster.md -------------------------------------------------------------------------------- /documentation/haproxy-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/haproxy-cluster.md -------------------------------------------------------------------------------- /documentation/images/brace-yourselves-kubernetes.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/brace-yourselves-kubernetes.jpeg -------------------------------------------------------------------------------- /documentation/images/brief-container-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/brief-container-history.png -------------------------------------------------------------------------------- /documentation/images/certificate-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/certificate-01.png -------------------------------------------------------------------------------- /documentation/images/certificate-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/certificate-02.png -------------------------------------------------------------------------------- /documentation/images/cloud-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/cloud-init.png -------------------------------------------------------------------------------- /documentation/images/cluster-ha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/cluster-ha.png -------------------------------------------------------------------------------- /documentation/images/cluster-load-balancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/cluster-load-balancer.png -------------------------------------------------------------------------------- /documentation/images/cluster-parallel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/cluster-parallel.png -------------------------------------------------------------------------------- /documentation/images/common-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/common-cluster.png -------------------------------------------------------------------------------- /documentation/images/corosync-interaction-join.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/corosync-interaction-join.gif -------------------------------------------------------------------------------- /documentation/images/corosync-interaction-leave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/corosync-interaction-leave.gif -------------------------------------------------------------------------------- /documentation/images/create-image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/create-image.jpeg -------------------------------------------------------------------------------- /documentation/images/dhcp-interaction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/dhcp-interaction.gif -------------------------------------------------------------------------------- /documentation/images/docker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/docker-logo.png -------------------------------------------------------------------------------- /documentation/images/etcd-failure-tolerance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/etcd-failure-tolerance.png -------------------------------------------------------------------------------- /documentation/images/etcd-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/etcd-logo.png -------------------------------------------------------------------------------- /documentation/images/flannel-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/flannel-logo.png -------------------------------------------------------------------------------- /documentation/images/gateway-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/gateway-diagram.png -------------------------------------------------------------------------------- /documentation/images/gluster-create-volume.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/gluster-create-volume.gif -------------------------------------------------------------------------------- /documentation/images/gluster-dispersed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/gluster-dispersed.png -------------------------------------------------------------------------------- /documentation/images/gluster-distributed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/gluster-distributed.png -------------------------------------------------------------------------------- /documentation/images/gluster-ec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/gluster-ec.gif -------------------------------------------------------------------------------- /documentation/images/gluster-replicated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/gluster-replicated.png -------------------------------------------------------------------------------- /documentation/images/grub-configure-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/grub-configure-01.png -------------------------------------------------------------------------------- /documentation/images/grub-configure-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/grub-configure-02.png -------------------------------------------------------------------------------- /documentation/images/grub-configure-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/grub-configure-03.png -------------------------------------------------------------------------------- /documentation/images/haproxy-cluster-stats-masters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/haproxy-cluster-stats-masters.png -------------------------------------------------------------------------------- /documentation/images/haproxy-cluster-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/haproxy-cluster-stats.png -------------------------------------------------------------------------------- /documentation/images/haproxy-cluster.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/haproxy-cluster.gif -------------------------------------------------------------------------------- /documentation/images/heketi-create-volume.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/heketi-create-volume.gif -------------------------------------------------------------------------------- /documentation/images/heketi-expand-volume.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/heketi-expand-volume.gif -------------------------------------------------------------------------------- /documentation/images/intermediate-ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/intermediate-ca.svg -------------------------------------------------------------------------------- /documentation/images/kube-approaches-master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-approaches-master.png -------------------------------------------------------------------------------- /documentation/images/kube-approaches-worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-approaches-worker.png -------------------------------------------------------------------------------- /documentation/images/kube-architecture-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-architecture-diagram.png -------------------------------------------------------------------------------- /documentation/images/kube-control-plane-services-external-etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-control-plane-services-external-etcd.png -------------------------------------------------------------------------------- /documentation/images/kube-dashboard-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-dashboard-auth.png -------------------------------------------------------------------------------- /documentation/images/kube-dashboard-singin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-dashboard-singin.png -------------------------------------------------------------------------------- /documentation/images/kube-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-dashboard.png -------------------------------------------------------------------------------- /documentation/images/kube-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-deployment.png -------------------------------------------------------------------------------- /documentation/images/kube-etcd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-etcd.gif -------------------------------------------------------------------------------- /documentation/images/kube-external-etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-external-etcd.png -------------------------------------------------------------------------------- /documentation/images/kube-keywords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-keywords.png -------------------------------------------------------------------------------- /documentation/images/kube-kubeadm-ha-topology-external-etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-kubeadm-ha-topology-external-etcd.png -------------------------------------------------------------------------------- /documentation/images/kube-kubeadm-ha-topology-stacked-etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-kubeadm-ha-topology-stacked-etcd.png -------------------------------------------------------------------------------- /documentation/images/kube-kubectl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-kubectl.png -------------------------------------------------------------------------------- /documentation/images/kube-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-logo.png -------------------------------------------------------------------------------- /documentation/images/kube-master-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-master-overview.png -------------------------------------------------------------------------------- /documentation/images/kube-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-namespace.png -------------------------------------------------------------------------------- /documentation/images/kube-network-model-master-to-worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-network-model-master-to-worker.png -------------------------------------------------------------------------------- /documentation/images/kube-network-model-pod-routing-traffic-across-different-hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-network-model-pod-routing-traffic-across-different-hosts.png -------------------------------------------------------------------------------- /documentation/images/kube-network-model-pod-routing-traffic-on-the-same-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-network-model-pod-routing-traffic-on-the-same-host.png -------------------------------------------------------------------------------- /documentation/images/kube-network-model-pod-to-internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-network-model-pod-to-internet.png -------------------------------------------------------------------------------- /documentation/images/kube-network-model-pod-to-pod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-network-model-pod-to-pod.png -------------------------------------------------------------------------------- /documentation/images/kube-network-model-vxlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-network-model-vxlan.png -------------------------------------------------------------------------------- /documentation/images/kube-network-model-worker-to-worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-network-model-worker-to-worker.png -------------------------------------------------------------------------------- /documentation/images/kube-network-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-network-model.png -------------------------------------------------------------------------------- /documentation/images/kube-pod-creation-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-pod-creation-flow.png -------------------------------------------------------------------------------- /documentation/images/kube-pods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-pods.png -------------------------------------------------------------------------------- /documentation/images/kube-service-clusterip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-service-clusterip.png -------------------------------------------------------------------------------- /documentation/images/kube-service-loadbalancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-service-loadbalancer.png -------------------------------------------------------------------------------- /documentation/images/kube-service-nodeport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-service-nodeport.png -------------------------------------------------------------------------------- /documentation/images/kube-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-service.png -------------------------------------------------------------------------------- /documentation/images/kube-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-services.png -------------------------------------------------------------------------------- /documentation/images/kube-stacked-etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-stacked-etcd.png -------------------------------------------------------------------------------- /documentation/images/kube-volumes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-volumes.png -------------------------------------------------------------------------------- /documentation/images/kube-worker-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kube-worker-overview.png -------------------------------------------------------------------------------- /documentation/images/kubernetes-cloud-flavors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/kubernetes-cloud-flavors.png -------------------------------------------------------------------------------- /documentation/images/linux-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/linux-image.png -------------------------------------------------------------------------------- /documentation/images/locales-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/locales-default.png -------------------------------------------------------------------------------- /documentation/images/locales-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/locales-select.png -------------------------------------------------------------------------------- /documentation/images/lvm-expand-concept.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/lvm-expand-concept.gif -------------------------------------------------------------------------------- /documentation/images/metallb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/metallb-logo.png -------------------------------------------------------------------------------- /documentation/images/networking-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/networking-diagram.png -------------------------------------------------------------------------------- /documentation/images/networking-dns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/networking-dns.gif -------------------------------------------------------------------------------- /documentation/images/networking-gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/networking-gateway.png -------------------------------------------------------------------------------- /documentation/images/networking-nat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/networking-nat.gif -------------------------------------------------------------------------------- /documentation/images/openssl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/openssl-logo.png -------------------------------------------------------------------------------- /documentation/images/resolvconf-confirm-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/resolvconf-confirm-01.png -------------------------------------------------------------------------------- /documentation/images/resolvconf-confirm-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/resolvconf-confirm-02.png -------------------------------------------------------------------------------- /documentation/images/technologies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/technologies.png -------------------------------------------------------------------------------- /documentation/images/under-the-hood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/under-the-hood.jpg -------------------------------------------------------------------------------- /documentation/images/virtualbox-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/virtualbox-gui.png -------------------------------------------------------------------------------- /documentation/images/virtualization-lxc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/images/virtualization-lxc.png -------------------------------------------------------------------------------- /documentation/kube-dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-dashboard.md -------------------------------------------------------------------------------- /documentation/kube-demo-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-demo-application.md -------------------------------------------------------------------------------- /documentation/kube-demo-storageclass.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/kube-etcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-etcd.md -------------------------------------------------------------------------------- /documentation/kube-flannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-flannel.md -------------------------------------------------------------------------------- /documentation/kube-heketi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-heketi.md -------------------------------------------------------------------------------- /documentation/kube-masters-and-workers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-masters-and-workers.md -------------------------------------------------------------------------------- /documentation/kube-masters-external-etcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-masters-external-etcd.md -------------------------------------------------------------------------------- /documentation/kube-masters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-masters.md -------------------------------------------------------------------------------- /documentation/kube-metallb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-metallb.md -------------------------------------------------------------------------------- /documentation/kube-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-overview.md -------------------------------------------------------------------------------- /documentation/kube-workers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube-workers.md -------------------------------------------------------------------------------- /documentation/kube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/kube.md -------------------------------------------------------------------------------- /documentation/linux-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/linux-image.md -------------------------------------------------------------------------------- /documentation/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/networking.md -------------------------------------------------------------------------------- /documentation/objective.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/objective.md -------------------------------------------------------------------------------- /documentation/running-vms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/running-vms.md -------------------------------------------------------------------------------- /documentation/starting-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/starting-setup.md -------------------------------------------------------------------------------- /documentation/technologies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/documentation/technologies.md -------------------------------------------------------------------------------- /etc/ssh/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/etc/ssh/ca -------------------------------------------------------------------------------- /etc/ssh/ca.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/etc/ssh/ca.pub -------------------------------------------------------------------------------- /gluster/glusterfs-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/gluster/glusterfs-daemonset.yaml -------------------------------------------------------------------------------- /gluster/glusterfs-simple-provisioner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/gluster/glusterfs-simple-provisioner.yaml -------------------------------------------------------------------------------- /gluster/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/gluster/rbac.yaml -------------------------------------------------------------------------------- /gluster/storage-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/gluster/storage-class.yaml -------------------------------------------------------------------------------- /master/kubeadm-config-external-etcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/master/kubeadm-config-external-etcd.yaml -------------------------------------------------------------------------------- /master/kubeadm-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/master/kubeadm-config.yaml -------------------------------------------------------------------------------- /metallb/metallb-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/metallb/metallb-config.yaml -------------------------------------------------------------------------------- /pacemaker/pacemaker.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/pacemaker/pacemaker.config -------------------------------------------------------------------------------- /post-config-interfaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/post-config-interfaces.sh -------------------------------------------------------------------------------- /post-config-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/post-config-resources.sh -------------------------------------------------------------------------------- /post-config-storages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/post-config-storages.sh -------------------------------------------------------------------------------- /services/kube-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/services/kube-service-clusterip.yaml -------------------------------------------------------------------------------- /services/kube-service-load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/services/kube-service-load-balancer.yaml -------------------------------------------------------------------------------- /services/kube-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvallim/kubernetes-under-the-hood/HEAD/services/kube-service-nodeport.yaml --------------------------------------------------------------------------------