├── .gitignore ├── .gitmodules ├── 01-pod ├── kustomization.yaml └── pod.yaml ├── 02-deployment ├── base │ ├── configs │ │ └── index.html │ ├── deployment.yaml │ ├── kustomization.yaml │ └── service.yaml ├── kustomization.yaml └── overlay │ ├── ingress │ └── single │ │ ├── ingress.yaml │ │ ├── kustomization.yaml │ │ └── service.yaml │ ├── production │ ├── configs │ │ └── index.html │ ├── image.yaml │ ├── kustomization.yaml │ ├── replica_count.yaml │ └── service.yaml │ └── staging │ ├── configs │ └── index.html │ ├── image.yaml │ ├── kustomization.yaml │ └── replica_count.yaml ├── 03-rancher-demo ├── deployment.yaml ├── ingress.yaml ├── kustomization.yaml └── service.yaml └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/.gitmodules -------------------------------------------------------------------------------- /01-pod/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - pod.yaml -------------------------------------------------------------------------------- /01-pod/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/01-pod/pod.yaml -------------------------------------------------------------------------------- /02-deployment/base/configs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/base/configs/index.html -------------------------------------------------------------------------------- /02-deployment/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/base/deployment.yaml -------------------------------------------------------------------------------- /02-deployment/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/base/kustomization.yaml -------------------------------------------------------------------------------- /02-deployment/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/base/service.yaml -------------------------------------------------------------------------------- /02-deployment/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/kustomization.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/ingress/single/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/ingress/single/ingress.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/ingress/single/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/ingress/single/kustomization.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/ingress/single/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/ingress/single/service.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/production/configs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/production/configs/index.html -------------------------------------------------------------------------------- /02-deployment/overlay/production/image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/production/image.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/production/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/production/kustomization.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/production/replica_count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/production/replica_count.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/production/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/production/service.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/staging/configs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/staging/configs/index.html -------------------------------------------------------------------------------- /02-deployment/overlay/staging/image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/staging/image.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/staging/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/staging/kustomization.yaml -------------------------------------------------------------------------------- /02-deployment/overlay/staging/replica_count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/02-deployment/overlay/staging/replica_count.yaml -------------------------------------------------------------------------------- /03-rancher-demo/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/03-rancher-demo/deployment.yaml -------------------------------------------------------------------------------- /03-rancher-demo/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/03-rancher-demo/ingress.yaml -------------------------------------------------------------------------------- /03-rancher-demo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/03-rancher-demo/kustomization.yaml -------------------------------------------------------------------------------- /03-rancher-demo/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/03-rancher-demo/service.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/k8s-intro-training/HEAD/README.md --------------------------------------------------------------------------------