├── .gitignore ├── Kubernetes_Logo.png ├── README.md ├── Vagrantfile ├── cluster.yml ├── k3d-logo.png ├── manifests ├── configmap.yaml ├── deployment.yaml ├── env-pod.yaml ├── ingress.yaml ├── pod.yaml ├── secret.yaml └── service.yaml ├── node_script.sh ├── rke.png └── slide-deck └── Intro to Kubernetes.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/.gitignore -------------------------------------------------------------------------------- /Kubernetes_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/Kubernetes_Logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/Vagrantfile -------------------------------------------------------------------------------- /cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/cluster.yml -------------------------------------------------------------------------------- /k3d-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/k3d-logo.png -------------------------------------------------------------------------------- /manifests/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/manifests/configmap.yaml -------------------------------------------------------------------------------- /manifests/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/manifests/deployment.yaml -------------------------------------------------------------------------------- /manifests/env-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/manifests/env-pod.yaml -------------------------------------------------------------------------------- /manifests/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/manifests/ingress.yaml -------------------------------------------------------------------------------- /manifests/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/manifests/pod.yaml -------------------------------------------------------------------------------- /manifests/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/manifests/secret.yaml -------------------------------------------------------------------------------- /manifests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/manifests/service.yaml -------------------------------------------------------------------------------- /node_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/node_script.sh -------------------------------------------------------------------------------- /rke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/rke.png -------------------------------------------------------------------------------- /slide-deck/Intro to Kubernetes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE-Rancher-Community/intro-to-kubernetes/HEAD/slide-deck/Intro to Kubernetes.pdf --------------------------------------------------------------------------------