Editing Kubernetes

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
'''[[wikipedia:Kubernetes|Kubernetes]]''' (Jun [[2014]], [https://trends.google.com/trends/explore?date=all&q=Kubernetes Google trends]) is an open-source [[Container-Orchestration]] system for automating deployment, autoscaling (based on CPU, memory<ref>https://blog.powerupcloud.com/autoscaling-based-on-cpu-memory-in-kubernetes-part-ii-fe2e495bddd4</ref> or custom metrics<ref>https://docs.bitnami.com/kubernetes/how-to/configure-autoscaling-custom-metrics/</ref>) and management of containerized applications.[4] Kubernetes works with [[Docker]], <code>[[containerd]]</code>, and [[CRI-O]].
+
'''[[wikipedia:Kubernetes|Kubernetes]]''' ([[2014]]) (commonly stylized as K8s[3]) is an open-source [[Container-Orchestration]] system for automating deployment, autoscaling (based on CPU, memory<ref>https://blog.powerupcloud.com/autoscaling-based-on-cpu-memory-in-kubernetes-part-ii-fe2e495bddd4</ref> or custom metrics<ref>https://docs.bitnami.com/kubernetes/how-to/configure-autoscaling-custom-metrics/</ref>) and management of containerized applications.[4] It works with a range of container tools, including '''[[Docker]]'''.
 +
* [[Google Trends]]: https://trends.google.com/trends/explore?date=all&q=Kubernetes
  
 
Kubernetes objects, concepts or subsystems:
 
Kubernetes objects, concepts or subsystems:
* [[Containers]], [[Pods]], [[Volumes (Kubernetes)|Volumes]], [[Kubernetes namespaces|namespaces]]
+
* [[Containers]], [[Pods]], [[Volumes (Kubernetes)|Volumes]]
 
* [[Persistent Volumes]] subsystem provides an [[API]] for users and administrators that abstracts details of how storage is provided from how it is consumed
 
* [[Persistent Volumes]] subsystem provides an [[API]] for users and administrators that abstracts details of how storage is provided from how it is consumed
* [[Kubernetes: Ingress controllers|Ingress controllers]]
+
* [[Namespace|namespaces]]  
* [[kubectl get all -A|Complete list]]: <code>[[statefulset.apps]], [[replicaset.apps]], [[Kubernetes deployments|deployment.apps]], [[Kubernetes services|service]], [[Pod (Kubernetes)|pod]], [[job.batch]], [[Kubernetes CronJobs|cronjob.batch]], [[daemonset.apps]], [[ClusterIP]], [[NodePort]]</code>
+
 
* [[Joe Beda]], [[Brendan Burns]], and [[Craig McLuckie]]
 
  
 
== Installation ==
 
== Installation ==
 
See: [[Kubernetes installation]] and [[Kubernetes changelog|Kubernetes changelog/releases]].
 
See: [[Kubernetes installation]] and [[Kubernetes changelog|Kubernetes changelog/releases]].
  
== Tools ==
 
* <code>[[kubectl]]</code>
 
* <code>[[kubeadm]]</code>
 
* <code>[[eksctl]]</code>
 
* [[K9s]]
 
* [[Lens]]
 
* [[Rancher]]
 
* <code>[[tfk8s]]</code>
 
  
 
== Information ==
 
== Information ==
Line 31: Line 23:
 
** <code>snap install microk8s --classic</code>
 
** <code>snap install microk8s --classic</code>
  
== [[Kubernetes log files]] <ref>https://kubernetes.io/docs/tasks/debug-application-cluster/debug-cluster/</ref>==
+
== Kubernetes Log files <ref>https://kubernetes.io/docs/tasks/debug-application-cluster/debug-cluster/</ref>==
 +
Master
 +
* <code>[[/var/log/kube-apiserver.log]]</code> - [[Kubernetes API Server|API Server]], responsible for serving the API
 +
* <code>[[/var/log/kube-scheduler.log]]</code> - Scheduler ([[kube-scheduler]]), responsible for making scheduling decisions
 +
* <code>/var/log/kube-controller-manager.log</code> - Controller that manages replication controllers
 +
* <code>[[etcd]]</code>
 +
 
 +
Worker Nodes
 +
* <code>[[/var/log/kubelet.log]]</code> - [[Kubelet]], responsible for running [[containers]] on the node
 +
* <code>/var/log/kube-proxy.log</code> - Kube Proxy, responsible for service load balancing
  
 
== Kubernetes Ports ==
 
== Kubernetes Ports ==
Line 51: Line 52:
 
* Read Kubernetes [[Storage]] documentation: https://kubernetes.io/docs/concepts/storage/ and types of [[/Volumes/]] supported.
 
* Read Kubernetes [[Storage]] documentation: https://kubernetes.io/docs/concepts/storage/ and types of [[/Volumes/]] supported.
 
* Review Wikipedia [[Kubernetes]] [[Grafana]] statistics: https://grafana.wikimedia.org/d/G8zPL7-Wz/kubernetes-node?orgId=1&var-dc=eqiad%20prometheus%2Fk8s&var-instance=kubernetes1002.eqiad.wmnet
 
* Review Wikipedia [[Kubernetes]] [[Grafana]] statistics: https://grafana.wikimedia.org/d/G8zPL7-Wz/kubernetes-node?orgId=1&var-dc=eqiad%20prometheus%2Fk8s&var-instance=kubernetes1002.eqiad.wmnet
* [[Connect to K8s cluster]]
 
* [[Kubernetes quiz]]
 
* [[How to run ubuntu in docker]]
 
* [[Get a shell to a running container]]
 
  
 
== Kubernetes Cloud Service Providers ==
 
== Kubernetes Cloud Service Providers ==
Line 67: Line 64:
 
== Related terms ==
 
== Related terms ==
 
* [[Helm]] [[package manager]]
 
* [[Helm]] [[package manager]]
 +
* [[Pod]], [[etcd]], [[Volume]], [[container]], [[Jobs]]
 
* [[Rancher]]: [[Rancher Desktop]]
 
* [[Rancher]]: [[Rancher Desktop]]
 
* [[kim (Kubernetes Image Manager)]]
 
* [[kim (Kubernetes Image Manager)]]
Line 72: Line 70:
 
* [[Katacoda]] Kubernetes playground
 
* [[Katacoda]] Kubernetes playground
 
* [[CoreDNS]]
 
* [[CoreDNS]]
* <code>[[dnsPolicy:]]</code>
+
* [[Control-plane]]
 
* Components: <code>[[kube-proxy]]</code>, <code>[[kube-scheduler]]</code>, <code>[[kube-apiserver]]</code>, <code>[[kubelet]]</code>, <code>[[kubectl]]</code>, <code>[[kubeadm]]</code>
 
* Components: <code>[[kube-proxy]]</code>, <code>[[kube-scheduler]]</code>, <code>[[kube-apiserver]]</code>, <code>[[kubelet]]</code>, <code>[[kubectl]]</code>, <code>[[kubeadm]]</code>
 
* [[CustomResourceDefinition (CRD)]]
 
* [[CustomResourceDefinition (CRD)]]
 +
* [[Joe Beda]], [[Brendan Burns]], and [[Craig McLuckie]]
 
* [[Antrea]]
 
* [[Antrea]]
 
* [[Kubeaudit]]
 
* [[Kubeaudit]]
 
* [[Kalm]] access control to [[cluster resources]]
 
* [[Kalm]] access control to [[cluster resources]]
 
* [[LogDNA]]
 
* [[LogDNA]]
* [[Pixie]]
 
 
* <code>[[SecurityContext]]</code>
 
* <code>[[SecurityContext]]</code>
* [[Kubernetes troubleshooting]]
+
* [[Monitoring Kubernetes]]
* [[Replicated.com]]
 
* [[Teleport]]
 
* [[GitLab Kubernetes agent server (KAS)]]
 
* [[registry.k8s.io]]
 
* [[Kubernetes Control Plane]]
 
  
 
== See also ==
 
== See also ==
 +
* {{microk8s}}
 +
* {{minikube}}
 
* {{Service mesh}}
 
* {{Service mesh}}
 
* {{Container orchestration}}
 
* {{Container orchestration}}
 +
* {{K8s cloud services}}
 +
* {{CKA}}
 
* {{k8s}}
 
* {{k8s}}
* {{K8s cloud services}}
 
 
  
 
[[Category:Linux containers]]
 
[[Category:Linux containers]]

Please note that all contributions to wikieduonline may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Wikieduonline:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)

Advertising: