├── .gitignore ├── CKA ├── README.md └── images │ ├── cka-logo.png │ ├── cni-4.png │ ├── cni-5.png │ ├── core-dns-1.png │ ├── core-dns-2.png │ ├── core-dns-3.png │ ├── ingress-1.png │ ├── ingress-10.png │ ├── ingress-2.png │ ├── ingress-3.png │ ├── ingress-4.png │ ├── ingress-5.png │ ├── ingress-6.png │ ├── ingress-7.png │ ├── ingress-8.png │ ├── ingress-9.png │ ├── init-container.png │ ├── kube-proxy-2.png │ ├── loadbalancer-1.png │ ├── loadbalancer-2.png │ ├── logo.png │ ├── nodeport-accessibility.png │ ├── rbac-1.png │ ├── rbac-2.png │ ├── rbac-3.png │ ├── rbac-4.png │ └── rbac-5.png ├── Helm ├── README.md └── images │ ├── helm-demo-1.png │ └── logo.svg ├── LICENSE ├── Operators ├── README.md └── images │ ├── api.png │ ├── logo.png │ └── prometheus-server.png ├── Prometheus ├── README.md └── images │ ├── Alertmanager-ui.png │ ├── CPU.png │ ├── Grafana-UI.png │ ├── Prometheus-Federations.jpg │ ├── a-rule.png │ ├── add-dash-2.png │ ├── add-dashboard.png │ ├── alert-rule-1.png │ ├── alert-rules.png │ ├── alertmanager-api.png │ ├── alertmanager-new-status.png │ ├── alertmanager-status.png │ ├── cpu-number.png │ ├── create-graph.png │ ├── create-rule-1.png │ ├── create-rule-2.png │ ├── create-rule-3.png │ ├── exporter.png │ ├── exposed-metrics.png │ ├── firing.png │ ├── gmail.jpg │ ├── grafana-cluster-rows.png │ ├── grafana-dash-id.png │ ├── grafana-dashboards.png │ ├── grafana-data-sources.png │ ├── grafana-explore.png │ ├── grafana-node-pods.png │ ├── grafana-users.png │ ├── logo.svg │ ├── node-exporter-nodes.png │ ├── node-status.png │ ├── node-target.png │ ├── pending.png │ ├── prometheus-rule.png │ ├── prometheus-server.png │ ├── prometheus-status-config.png │ ├── prometheus-target-expand.png │ ├── prometheus-targets.png │ ├── prometheus-ui.png │ ├── promql-prometheus-ui-1.png │ ├── promql-prometheus-ui-2.png │ ├── promql-query.png │ ├── redis-dashboard.png │ ├── redis-down.png │ ├── redis-exporter.png │ ├── redis-queries.png │ ├── redis-rules.png │ ├── request-duration.png │ ├── request-per-seconds.png │ └── requests-dash.png ├── README.md └── k8s-learning-platform ├── .gitignore ├── README.md ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── favicon.png ├── kubernetes-logo.png └── logo.png ├── scripts └── build-test.sh ├── src ├── app │ ├── cka │ │ ├── getting-started │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── pods-deployments │ │ │ └── page.tsx │ │ ├── security-rbac │ │ │ └── page.tsx │ │ ├── services-networking │ │ │ └── page.tsx │ │ ├── storage-volumes │ │ │ └── page.tsx │ │ └── troubleshooting │ │ │ └── page.tsx │ ├── get-started │ │ └── page.tsx │ ├── globals.css │ ├── helm │ │ ├── creating-charts │ │ │ └── page.tsx │ │ ├── helmfile │ │ │ └── page.tsx │ │ ├── introduction │ │ │ └── page.tsx │ │ ├── online-boutique-demo │ │ │ └── page.tsx │ │ ├── page.tsx │ │ └── templating │ │ │ └── page.tsx │ ├── layout.tsx │ ├── operators │ │ ├── concepts │ │ │ └── page.tsx │ │ ├── crds │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── prometheus-operator │ │ │ └── page.tsx │ │ └── splunk-operator │ │ │ └── page.tsx │ ├── page.tsx │ └── prometheus │ │ ├── alert-rules │ │ └── page.tsx │ │ ├── alertmanager │ │ └── page.tsx │ │ ├── custom-apps │ │ └── page.tsx │ │ ├── grafana │ │ └── page.tsx │ │ ├── installation │ │ └── page.tsx │ │ ├── introduction │ │ └── page.tsx │ │ ├── page.tsx │ │ └── third-party-apps │ │ └── page.tsx ├── components │ ├── mobile-layout.tsx │ ├── navigation.tsx │ ├── search-modal.tsx │ ├── sidebar.tsx │ ├── theme-provider.tsx │ ├── theme-toggle.tsx │ └── ui │ │ ├── badge.tsx │ │ ├── button.tsx │ │ └── card.tsx └── lib │ ├── search-data.ts │ └── utils.ts ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE folder 2 | .idea 3 | 4 | # MacOS file 5 | .DS_Store 6 | 7 | -------------------------------------------------------------------------------- /CKA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/README.md -------------------------------------------------------------------------------- /CKA/images/cka-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/cka-logo.png -------------------------------------------------------------------------------- /CKA/images/cni-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/cni-4.png -------------------------------------------------------------------------------- /CKA/images/cni-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/cni-5.png -------------------------------------------------------------------------------- /CKA/images/core-dns-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/core-dns-1.png -------------------------------------------------------------------------------- /CKA/images/core-dns-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/core-dns-2.png -------------------------------------------------------------------------------- /CKA/images/core-dns-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/core-dns-3.png -------------------------------------------------------------------------------- /CKA/images/ingress-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-1.png -------------------------------------------------------------------------------- /CKA/images/ingress-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-10.png -------------------------------------------------------------------------------- /CKA/images/ingress-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-2.png -------------------------------------------------------------------------------- /CKA/images/ingress-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-3.png -------------------------------------------------------------------------------- /CKA/images/ingress-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-4.png -------------------------------------------------------------------------------- /CKA/images/ingress-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-5.png -------------------------------------------------------------------------------- /CKA/images/ingress-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-6.png -------------------------------------------------------------------------------- /CKA/images/ingress-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-7.png -------------------------------------------------------------------------------- /CKA/images/ingress-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-8.png -------------------------------------------------------------------------------- /CKA/images/ingress-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/ingress-9.png -------------------------------------------------------------------------------- /CKA/images/init-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/init-container.png -------------------------------------------------------------------------------- /CKA/images/kube-proxy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/kube-proxy-2.png -------------------------------------------------------------------------------- /CKA/images/loadbalancer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/loadbalancer-1.png -------------------------------------------------------------------------------- /CKA/images/loadbalancer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/loadbalancer-2.png -------------------------------------------------------------------------------- /CKA/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/logo.png -------------------------------------------------------------------------------- /CKA/images/nodeport-accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/nodeport-accessibility.png -------------------------------------------------------------------------------- /CKA/images/rbac-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/rbac-1.png -------------------------------------------------------------------------------- /CKA/images/rbac-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/rbac-2.png -------------------------------------------------------------------------------- /CKA/images/rbac-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/rbac-3.png -------------------------------------------------------------------------------- /CKA/images/rbac-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/rbac-4.png -------------------------------------------------------------------------------- /CKA/images/rbac-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/CKA/images/rbac-5.png -------------------------------------------------------------------------------- /Helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Helm/README.md -------------------------------------------------------------------------------- /Helm/images/helm-demo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Helm/images/helm-demo-1.png -------------------------------------------------------------------------------- /Helm/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Helm/images/logo.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/LICENSE -------------------------------------------------------------------------------- /Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Operators/README.md -------------------------------------------------------------------------------- /Operators/images/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Operators/images/api.png -------------------------------------------------------------------------------- /Operators/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Operators/images/logo.png -------------------------------------------------------------------------------- /Operators/images/prometheus-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Operators/images/prometheus-server.png -------------------------------------------------------------------------------- /Prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/README.md -------------------------------------------------------------------------------- /Prometheus/images/Alertmanager-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/Alertmanager-ui.png -------------------------------------------------------------------------------- /Prometheus/images/CPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/CPU.png -------------------------------------------------------------------------------- /Prometheus/images/Grafana-UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/Grafana-UI.png -------------------------------------------------------------------------------- /Prometheus/images/Prometheus-Federations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/Prometheus-Federations.jpg -------------------------------------------------------------------------------- /Prometheus/images/a-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/a-rule.png -------------------------------------------------------------------------------- /Prometheus/images/add-dash-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/add-dash-2.png -------------------------------------------------------------------------------- /Prometheus/images/add-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/add-dashboard.png -------------------------------------------------------------------------------- /Prometheus/images/alert-rule-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/alert-rule-1.png -------------------------------------------------------------------------------- /Prometheus/images/alert-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/alert-rules.png -------------------------------------------------------------------------------- /Prometheus/images/alertmanager-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/alertmanager-api.png -------------------------------------------------------------------------------- /Prometheus/images/alertmanager-new-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/alertmanager-new-status.png -------------------------------------------------------------------------------- /Prometheus/images/alertmanager-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/alertmanager-status.png -------------------------------------------------------------------------------- /Prometheus/images/cpu-number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/cpu-number.png -------------------------------------------------------------------------------- /Prometheus/images/create-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/create-graph.png -------------------------------------------------------------------------------- /Prometheus/images/create-rule-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/create-rule-1.png -------------------------------------------------------------------------------- /Prometheus/images/create-rule-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/create-rule-2.png -------------------------------------------------------------------------------- /Prometheus/images/create-rule-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/create-rule-3.png -------------------------------------------------------------------------------- /Prometheus/images/exporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/exporter.png -------------------------------------------------------------------------------- /Prometheus/images/exposed-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/exposed-metrics.png -------------------------------------------------------------------------------- /Prometheus/images/firing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/firing.png -------------------------------------------------------------------------------- /Prometheus/images/gmail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/gmail.jpg -------------------------------------------------------------------------------- /Prometheus/images/grafana-cluster-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/grafana-cluster-rows.png -------------------------------------------------------------------------------- /Prometheus/images/grafana-dash-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/grafana-dash-id.png -------------------------------------------------------------------------------- /Prometheus/images/grafana-dashboards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/grafana-dashboards.png -------------------------------------------------------------------------------- /Prometheus/images/grafana-data-sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/grafana-data-sources.png -------------------------------------------------------------------------------- /Prometheus/images/grafana-explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/grafana-explore.png -------------------------------------------------------------------------------- /Prometheus/images/grafana-node-pods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/grafana-node-pods.png -------------------------------------------------------------------------------- /Prometheus/images/grafana-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/grafana-users.png -------------------------------------------------------------------------------- /Prometheus/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/logo.svg -------------------------------------------------------------------------------- /Prometheus/images/node-exporter-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/node-exporter-nodes.png -------------------------------------------------------------------------------- /Prometheus/images/node-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/node-status.png -------------------------------------------------------------------------------- /Prometheus/images/node-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/node-target.png -------------------------------------------------------------------------------- /Prometheus/images/pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/pending.png -------------------------------------------------------------------------------- /Prometheus/images/prometheus-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/prometheus-rule.png -------------------------------------------------------------------------------- /Prometheus/images/prometheus-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/prometheus-server.png -------------------------------------------------------------------------------- /Prometheus/images/prometheus-status-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/prometheus-status-config.png -------------------------------------------------------------------------------- /Prometheus/images/prometheus-target-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/prometheus-target-expand.png -------------------------------------------------------------------------------- /Prometheus/images/prometheus-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/prometheus-targets.png -------------------------------------------------------------------------------- /Prometheus/images/prometheus-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/prometheus-ui.png -------------------------------------------------------------------------------- /Prometheus/images/promql-prometheus-ui-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/promql-prometheus-ui-1.png -------------------------------------------------------------------------------- /Prometheus/images/promql-prometheus-ui-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/promql-prometheus-ui-2.png -------------------------------------------------------------------------------- /Prometheus/images/promql-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/promql-query.png -------------------------------------------------------------------------------- /Prometheus/images/redis-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/redis-dashboard.png -------------------------------------------------------------------------------- /Prometheus/images/redis-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/redis-down.png -------------------------------------------------------------------------------- /Prometheus/images/redis-exporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/redis-exporter.png -------------------------------------------------------------------------------- /Prometheus/images/redis-queries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/redis-queries.png -------------------------------------------------------------------------------- /Prometheus/images/redis-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/redis-rules.png -------------------------------------------------------------------------------- /Prometheus/images/request-duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/request-duration.png -------------------------------------------------------------------------------- /Prometheus/images/request-per-seconds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/request-per-seconds.png -------------------------------------------------------------------------------- /Prometheus/images/requests-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/Prometheus/images/requests-dash.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/README.md -------------------------------------------------------------------------------- /k8s-learning-platform/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .next 3 | -------------------------------------------------------------------------------- /k8s-learning-platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/README.md -------------------------------------------------------------------------------- /k8s-learning-platform/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/next-env.d.ts -------------------------------------------------------------------------------- /k8s-learning-platform/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/next.config.js -------------------------------------------------------------------------------- /k8s-learning-platform/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/package-lock.json -------------------------------------------------------------------------------- /k8s-learning-platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/package.json -------------------------------------------------------------------------------- /k8s-learning-platform/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/postcss.config.js -------------------------------------------------------------------------------- /k8s-learning-platform/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/public/favicon.ico -------------------------------------------------------------------------------- /k8s-learning-platform/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/public/favicon.png -------------------------------------------------------------------------------- /k8s-learning-platform/public/kubernetes-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/public/kubernetes-logo.png -------------------------------------------------------------------------------- /k8s-learning-platform/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/public/logo.png -------------------------------------------------------------------------------- /k8s-learning-platform/scripts/build-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/scripts/build-test.sh -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/cka/getting-started/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/cka/getting-started/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/cka/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/cka/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/cka/pods-deployments/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/cka/pods-deployments/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/cka/security-rbac/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/cka/security-rbac/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/cka/services-networking/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/cka/services-networking/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/cka/storage-volumes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/cka/storage-volumes/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/cka/troubleshooting/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/cka/troubleshooting/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/get-started/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/get-started/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/globals.css -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/helm/creating-charts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/helm/creating-charts/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/helm/helmfile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/helm/helmfile/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/helm/introduction/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/helm/introduction/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/helm/online-boutique-demo/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/helm/online-boutique-demo/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/helm/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/helm/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/helm/templating/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/helm/templating/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/layout.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/operators/concepts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/operators/concepts/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/operators/crds/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/operators/crds/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/operators/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/operators/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/operators/prometheus-operator/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/operators/prometheus-operator/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/operators/splunk-operator/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/operators/splunk-operator/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/prometheus/alert-rules/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/prometheus/alert-rules/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/prometheus/alertmanager/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/prometheus/alertmanager/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/prometheus/custom-apps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/prometheus/custom-apps/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/prometheus/grafana/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/prometheus/grafana/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/prometheus/installation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/prometheus/installation/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/prometheus/introduction/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/prometheus/introduction/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/prometheus/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/prometheus/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/app/prometheus/third-party-apps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/app/prometheus/third-party-apps/page.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/mobile-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/mobile-layout.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/navigation.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/search-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/search-modal.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/sidebar.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/theme-toggle.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/ui/button.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/components/ui/card.tsx -------------------------------------------------------------------------------- /k8s-learning-platform/src/lib/search-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/lib/search-data.ts -------------------------------------------------------------------------------- /k8s-learning-platform/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/src/lib/utils.ts -------------------------------------------------------------------------------- /k8s-learning-platform/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/tailwind.config.js -------------------------------------------------------------------------------- /k8s-learning-platform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotHarshhaa/Certified_Kubernetes_Administrator/HEAD/k8s-learning-platform/tsconfig.json --------------------------------------------------------------------------------