├── Cluster Setup └── README.md ├── Commands and args └── README.md ├── ConfigMap ├── README.md ├── configmap-1.yaml ├── configmap-2.yaml └── configmap-3.yaml ├── Custom-Scheduler └── README.md ├── DaemonSet └── README.md ├── Deployment └── README.md ├── Environment Variables ├── Part-1 │ ├── Dockerfile │ ├── README.md │ ├── envars-2.yaml │ └── envars.yaml ├── Part-2 │ ├── README.md │ ├── fieldref.yaml │ └── resourcefieldref.yaml └── Part-3 │ ├── README.md │ └── volume.yaml ├── Ingress ├── README.md ├── ingress-resource.yaml ├── prod_issuer.yaml └── staging_issuer.yaml ├── Kind ├── README.md ├── kind-config └── kind-ingress-config ├── Namespace └── README.md ├── Network-Policy ├── Assignment │ ├── README.md │ ├── db-network-policy.yaml │ └── user-submissions │ │ └── riya │ │ └── db-network-policy.yaml └── lab-exercise │ └── README.md ├── NodeSelector └── README.md ├── Nodename └── README.md ├── PV-PVC ├── README.md ├── pod.yaml ├── pvc.yaml └── storageclass.yaml ├── Pod ├── Declarative Way │ └── README.md └── Imperative Way │ └── README.md ├── RBAC └── README.md ├── README.md ├── ReplicaSet └── README.md ├── Resource Quota └── README.md ├── Rollback └── README.md ├── Secret ├── README.md ├── secret-1.yaml ├── secret-2.yaml └── secret-3.yaml ├── Security-Context └── README.md ├── Service-Account └── README.md ├── Service └── README.md ├── StatefulSet └── README.md ├── Static Pods └── README.md └── Taints and Tolerations └── README.md /Cluster Setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Cluster Setup/README.md -------------------------------------------------------------------------------- /Commands and args/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Commands and args/README.md -------------------------------------------------------------------------------- /ConfigMap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/ConfigMap/README.md -------------------------------------------------------------------------------- /ConfigMap/configmap-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/ConfigMap/configmap-1.yaml -------------------------------------------------------------------------------- /ConfigMap/configmap-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/ConfigMap/configmap-2.yaml -------------------------------------------------------------------------------- /ConfigMap/configmap-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/ConfigMap/configmap-3.yaml -------------------------------------------------------------------------------- /Custom-Scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Custom-Scheduler/README.md -------------------------------------------------------------------------------- /DaemonSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/DaemonSet/README.md -------------------------------------------------------------------------------- /Deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Deployment/README.md -------------------------------------------------------------------------------- /Environment Variables/Part-1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-1/Dockerfile -------------------------------------------------------------------------------- /Environment Variables/Part-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-1/README.md -------------------------------------------------------------------------------- /Environment Variables/Part-1/envars-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-1/envars-2.yaml -------------------------------------------------------------------------------- /Environment Variables/Part-1/envars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-1/envars.yaml -------------------------------------------------------------------------------- /Environment Variables/Part-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-2/README.md -------------------------------------------------------------------------------- /Environment Variables/Part-2/fieldref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-2/fieldref.yaml -------------------------------------------------------------------------------- /Environment Variables/Part-2/resourcefieldref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-2/resourcefieldref.yaml -------------------------------------------------------------------------------- /Environment Variables/Part-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-3/README.md -------------------------------------------------------------------------------- /Environment Variables/Part-3/volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Environment Variables/Part-3/volume.yaml -------------------------------------------------------------------------------- /Ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Ingress/README.md -------------------------------------------------------------------------------- /Ingress/ingress-resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Ingress/ingress-resource.yaml -------------------------------------------------------------------------------- /Ingress/prod_issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Ingress/prod_issuer.yaml -------------------------------------------------------------------------------- /Ingress/staging_issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Ingress/staging_issuer.yaml -------------------------------------------------------------------------------- /Kind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Kind/README.md -------------------------------------------------------------------------------- /Kind/kind-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Kind/kind-config -------------------------------------------------------------------------------- /Kind/kind-ingress-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Kind/kind-ingress-config -------------------------------------------------------------------------------- /Namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Namespace/README.md -------------------------------------------------------------------------------- /Network-Policy/Assignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Network-Policy/Assignment/README.md -------------------------------------------------------------------------------- /Network-Policy/Assignment/db-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Network-Policy/Assignment/db-network-policy.yaml -------------------------------------------------------------------------------- /Network-Policy/Assignment/user-submissions/riya/db-network-policy.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Network-Policy/lab-exercise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Network-Policy/lab-exercise/README.md -------------------------------------------------------------------------------- /NodeSelector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/NodeSelector/README.md -------------------------------------------------------------------------------- /Nodename/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Nodename/README.md -------------------------------------------------------------------------------- /PV-PVC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/PV-PVC/README.md -------------------------------------------------------------------------------- /PV-PVC/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/PV-PVC/pod.yaml -------------------------------------------------------------------------------- /PV-PVC/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/PV-PVC/pvc.yaml -------------------------------------------------------------------------------- /PV-PVC/storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/PV-PVC/storageclass.yaml -------------------------------------------------------------------------------- /Pod/Declarative Way/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Pod/Declarative Way/README.md -------------------------------------------------------------------------------- /Pod/Imperative Way/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Pod/Imperative Way/README.md -------------------------------------------------------------------------------- /RBAC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/RBAC/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/README.md -------------------------------------------------------------------------------- /ReplicaSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/ReplicaSet/README.md -------------------------------------------------------------------------------- /Resource Quota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Resource Quota/README.md -------------------------------------------------------------------------------- /Rollback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Rollback/README.md -------------------------------------------------------------------------------- /Secret/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Secret/README.md -------------------------------------------------------------------------------- /Secret/secret-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Secret/secret-1.yaml -------------------------------------------------------------------------------- /Secret/secret-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Secret/secret-2.yaml -------------------------------------------------------------------------------- /Secret/secret-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Secret/secret-3.yaml -------------------------------------------------------------------------------- /Security-Context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Security-Context/README.md -------------------------------------------------------------------------------- /Service-Account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Service-Account/README.md -------------------------------------------------------------------------------- /Service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Service/README.md -------------------------------------------------------------------------------- /StatefulSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/StatefulSet/README.md -------------------------------------------------------------------------------- /Static Pods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Static Pods/README.md -------------------------------------------------------------------------------- /Taints and Tolerations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsproin/certified-kubernetes-administrator/HEAD/Taints and Tolerations/README.md --------------------------------------------------------------------------------