From 127e24373189d13a69a40a26905b40a986b8c393 Mon Sep 17 00:00:00 2001 From: Mumshad Date: Fri, 3 May 2019 13:38:25 +0800 Subject: [PATCH] re-organize folder structure --- practice-questions-answers/README.md | 3 ++- .../commands-and-arguments/answer.md | 1 + .../application-lifecycle-management/configmaps/answer.md | 1 + .../application-lifecycle-management/liveness-probes/answer.md | 1 + .../rolling-updates-and-rollbacks/answer.md | 1 + .../application-lifecycle-management/secrets/answer.md | 1 + .../cluster-maintenance/backup-etcd/answer.md | 1 + .../cluster-maintenance/cluster-upgrade-process/answer.md | 1 + .../cluster-maintenance/os-upgrades/answer.md | 1 + practice-questions-answers/core-concepts/deployments/answer.md | 1 + practice-questions-answers/core-concepts/namespaces/answer.md | 1 + practice-questions-answers/core-concepts/pods/answer.md | 1 + practice-questions-answers/core-concepts/replicasets/answer.md | 1 + .../install/bootstrap-worker-node-2/answer.md | 1 + .../install/bootstrap-worker-node/answer.md | 1 + .../install/end-to-end-tests-run-and-analyze/answer.md | 1 + .../logging-monitoring/managing-application-logs/answer.md | 1 + .../logging-monitoring/monitor-cluster-components/answer.md | 1 + .../networking/cni-in-kubernetes/answer.md | 1 + practice-questions-answers/networking/cni-weave-read/answer.md | 1 + practice-questions-answers/networking/cni-weave/answer.md | 1 + .../networking/coredns-in-kubernetes/answer.md | 1 + practice-questions-answers/scheduling/daemonsets/answer.md | 1 + .../scheduling/labels-and-selectors/answer.md | 1 + .../scheduling/manual-scheduling/answer.md | 1 + .../scheduling/multiple-schedulers/answer.md | 1 + .../scheduling/resource-limits/answer.md | 1 + practice-questions-answers/security/certificates-api/answer.md | 1 + practice-questions-answers/security/cluster-roles/answer.md | 1 + practice-questions-answers/security/image-security/answer.md | 1 + practice-questions-answers/security/kubeconfig/answer.md | 1 + practice-questions-answers/security/network-policies/answer.md | 1 + .../security/security-contexts/answer.md | 1 + .../security/view-certificate-details/answer.md | 1 + .../troubleshooting/application-failure/answer.md | 1 + .../troubleshooting/control-plane-failure/answer.md | 1 + .../troubleshooting/worker-node-failure/answer.md | 1 + 37 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 practice-questions-answers/application-lifecycle-management/commands-and-arguments/answer.md create mode 100644 practice-questions-answers/application-lifecycle-management/configmaps/answer.md create mode 100644 practice-questions-answers/application-lifecycle-management/liveness-probes/answer.md create mode 100644 practice-questions-answers/application-lifecycle-management/rolling-updates-and-rollbacks/answer.md create mode 100644 practice-questions-answers/application-lifecycle-management/secrets/answer.md create mode 100644 practice-questions-answers/cluster-maintenance/backup-etcd/answer.md create mode 100644 practice-questions-answers/cluster-maintenance/cluster-upgrade-process/answer.md create mode 100644 practice-questions-answers/cluster-maintenance/os-upgrades/answer.md create mode 100644 practice-questions-answers/core-concepts/deployments/answer.md create mode 100644 practice-questions-answers/core-concepts/namespaces/answer.md create mode 100644 practice-questions-answers/core-concepts/pods/answer.md create mode 100644 practice-questions-answers/core-concepts/replicasets/answer.md create mode 100644 practice-questions-answers/install/bootstrap-worker-node-2/answer.md create mode 100644 practice-questions-answers/install/bootstrap-worker-node/answer.md create mode 100644 practice-questions-answers/install/end-to-end-tests-run-and-analyze/answer.md create mode 100644 practice-questions-answers/logging-monitoring/managing-application-logs/answer.md create mode 100644 practice-questions-answers/logging-monitoring/monitor-cluster-components/answer.md create mode 100644 practice-questions-answers/networking/cni-in-kubernetes/answer.md create mode 100644 practice-questions-answers/networking/cni-weave-read/answer.md create mode 100644 practice-questions-answers/networking/cni-weave/answer.md create mode 100644 practice-questions-answers/networking/coredns-in-kubernetes/answer.md create mode 100644 practice-questions-answers/scheduling/daemonsets/answer.md create mode 100644 practice-questions-answers/scheduling/labels-and-selectors/answer.md create mode 100644 practice-questions-answers/scheduling/manual-scheduling/answer.md create mode 100644 practice-questions-answers/scheduling/multiple-schedulers/answer.md create mode 100644 practice-questions-answers/scheduling/resource-limits/answer.md create mode 100644 practice-questions-answers/security/certificates-api/answer.md create mode 100644 practice-questions-answers/security/cluster-roles/answer.md create mode 100644 practice-questions-answers/security/image-security/answer.md create mode 100644 practice-questions-answers/security/kubeconfig/answer.md create mode 100644 practice-questions-answers/security/network-policies/answer.md create mode 100644 practice-questions-answers/security/security-contexts/answer.md create mode 100644 practice-questions-answers/security/view-certificate-details/answer.md create mode 100644 practice-questions-answers/troubleshooting/application-failure/answer.md create mode 100644 practice-questions-answers/troubleshooting/control-plane-failure/answer.md create mode 100644 practice-questions-answers/troubleshooting/worker-node-failure/answer.md diff --git a/practice-questions-answers/README.md b/practice-questions-answers/README.md index 200ad8e..5565eda 100644 --- a/practice-questions-answers/README.md +++ b/practice-questions-answers/README.md @@ -51,5 +51,6 @@ This repository contains answers for the practice tests hosted on the course [Ce # Contributing Guide 1. The folder structure for all topics and associated practice tests are created already. Use the same pattern to create one if it doesn't exist. -2. Create a file with your answers. +2. Create a file with your answers. If you have a different answer than the one that is already there, create a new answer file with yoru name in it. +4. Do not post the entire question. Only post the question number. 3. Send in a pull request \ No newline at end of file diff --git a/practice-questions-answers/application-lifecycle-management/commands-and-arguments/answer.md b/practice-questions-answers/application-lifecycle-management/commands-and-arguments/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/application-lifecycle-management/commands-and-arguments/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/application-lifecycle-management/configmaps/answer.md b/practice-questions-answers/application-lifecycle-management/configmaps/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/application-lifecycle-management/configmaps/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/application-lifecycle-management/liveness-probes/answer.md b/practice-questions-answers/application-lifecycle-management/liveness-probes/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/application-lifecycle-management/liveness-probes/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/application-lifecycle-management/rolling-updates-and-rollbacks/answer.md b/practice-questions-answers/application-lifecycle-management/rolling-updates-and-rollbacks/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/application-lifecycle-management/rolling-updates-and-rollbacks/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/application-lifecycle-management/secrets/answer.md b/practice-questions-answers/application-lifecycle-management/secrets/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/application-lifecycle-management/secrets/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/cluster-maintenance/backup-etcd/answer.md b/practice-questions-answers/cluster-maintenance/backup-etcd/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/cluster-maintenance/backup-etcd/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/cluster-maintenance/cluster-upgrade-process/answer.md b/practice-questions-answers/cluster-maintenance/cluster-upgrade-process/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/cluster-maintenance/cluster-upgrade-process/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/cluster-maintenance/os-upgrades/answer.md b/practice-questions-answers/cluster-maintenance/os-upgrades/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/cluster-maintenance/os-upgrades/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/core-concepts/deployments/answer.md b/practice-questions-answers/core-concepts/deployments/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/core-concepts/deployments/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/core-concepts/namespaces/answer.md b/practice-questions-answers/core-concepts/namespaces/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/core-concepts/namespaces/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/core-concepts/pods/answer.md b/practice-questions-answers/core-concepts/pods/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/core-concepts/pods/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/core-concepts/replicasets/answer.md b/practice-questions-answers/core-concepts/replicasets/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/core-concepts/replicasets/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/install/bootstrap-worker-node-2/answer.md b/practice-questions-answers/install/bootstrap-worker-node-2/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/install/bootstrap-worker-node-2/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/install/bootstrap-worker-node/answer.md b/practice-questions-answers/install/bootstrap-worker-node/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/install/bootstrap-worker-node/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/install/end-to-end-tests-run-and-analyze/answer.md b/practice-questions-answers/install/end-to-end-tests-run-and-analyze/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/install/end-to-end-tests-run-and-analyze/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/logging-monitoring/managing-application-logs/answer.md b/practice-questions-answers/logging-monitoring/managing-application-logs/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/logging-monitoring/managing-application-logs/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/logging-monitoring/monitor-cluster-components/answer.md b/practice-questions-answers/logging-monitoring/monitor-cluster-components/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/logging-monitoring/monitor-cluster-components/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/networking/cni-in-kubernetes/answer.md b/practice-questions-answers/networking/cni-in-kubernetes/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/networking/cni-in-kubernetes/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/networking/cni-weave-read/answer.md b/practice-questions-answers/networking/cni-weave-read/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/networking/cni-weave-read/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/networking/cni-weave/answer.md b/practice-questions-answers/networking/cni-weave/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/networking/cni-weave/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/networking/coredns-in-kubernetes/answer.md b/practice-questions-answers/networking/coredns-in-kubernetes/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/networking/coredns-in-kubernetes/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/scheduling/daemonsets/answer.md b/practice-questions-answers/scheduling/daemonsets/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/scheduling/daemonsets/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/scheduling/labels-and-selectors/answer.md b/practice-questions-answers/scheduling/labels-and-selectors/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/scheduling/labels-and-selectors/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/scheduling/manual-scheduling/answer.md b/practice-questions-answers/scheduling/manual-scheduling/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/scheduling/manual-scheduling/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/scheduling/multiple-schedulers/answer.md b/practice-questions-answers/scheduling/multiple-schedulers/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/scheduling/multiple-schedulers/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/scheduling/resource-limits/answer.md b/practice-questions-answers/scheduling/resource-limits/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/scheduling/resource-limits/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/security/certificates-api/answer.md b/practice-questions-answers/security/certificates-api/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/security/certificates-api/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/security/cluster-roles/answer.md b/practice-questions-answers/security/cluster-roles/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/security/cluster-roles/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/security/image-security/answer.md b/practice-questions-answers/security/image-security/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/security/image-security/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/security/kubeconfig/answer.md b/practice-questions-answers/security/kubeconfig/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/security/kubeconfig/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/security/network-policies/answer.md b/practice-questions-answers/security/network-policies/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/security/network-policies/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/security/security-contexts/answer.md b/practice-questions-answers/security/security-contexts/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/security/security-contexts/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/security/view-certificate-details/answer.md b/practice-questions-answers/security/view-certificate-details/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/security/view-certificate-details/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/troubleshooting/application-failure/answer.md b/practice-questions-answers/troubleshooting/application-failure/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/troubleshooting/application-failure/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/troubleshooting/control-plane-failure/answer.md b/practice-questions-answers/troubleshooting/control-plane-failure/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/troubleshooting/control-plane-failure/answer.md @@ -0,0 +1 @@ +# Practice Test Solution diff --git a/practice-questions-answers/troubleshooting/worker-node-failure/answer.md b/practice-questions-answers/troubleshooting/worker-node-failure/answer.md new file mode 100644 index 0000000..e53f8f1 --- /dev/null +++ b/practice-questions-answers/troubleshooting/worker-node-failure/answer.md @@ -0,0 +1 @@ +# Practice Test Solution