K8S Object

To see a list of available KubernetesKubernetes
Kubernetes is a container orchestration platform. This note serves as a Map of Content for this topic. Start your exploration on one of these notes:

[[K8S Node]]
[[K8S Object]]
[[What happen...
objects on your cluster, you can run:


# all
kubectl api-resources

# only namespaced
kubectl api-resources --namespaced=true

# only cluster-scoped
kubectl api-resources --namespaced=false

Links to some of the objects:

  • K8S PodK8S Pod
    Pod is a [[K8S Object]] used to run one or more tightly coupled containers and is rarely used directly, especially in production because of the limitations on the number of properties that can be u...
  • K8S SecretK8S Secret
    Secrets are [[K8S Object]]s which are used to store sensitive information you can't otherwise put into a Pod spec or a [[K8S ConfigMap]].

    Secrets are very similar to ConfigMaps, the biggest differ...
  • K8S ReplicasetK8S Replicaset
    ReplicaSets are [[K8S Object]]s used to make sure a certain number of [[K8S Pod]]s is running on the Kubernetes cluster.

    ReplicaSet uses the labels defined in the selector property to find all the...
  • K8S Service AccountK8S Service Account
    Service Accounts are [[K8S Object]]s used to help pods with [[K8S Authentication]].

    The ServiceAccount object is namespace-scoped. It's used to allow a process in a pod to access Kubernetes API Se...

Status: #🌲 Tags: #🗺️