- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 551 - 560 of 673 for host:kubernetes.io (0.1 sec)
-
JSONPath Support | Kubernetes
Kubectl supports JSONPath template. JSONPath template is composed of JSONPath expressions enclosed by curly braces {}. Kubectl uses JSONPath expressions to filter on specific fields in the JSON object and format the output. In addition to the original JSONPath template syntax, the following functions and syntax are valid: Use double quotes to quote text inside JSONPath expressions. Use the range, end operators to iterate lists. Use negative slice indices to step backwards through a list.kubernetes.io/docs/reference/kubectl/jsonpath/Registered: Wed Feb 12 06:39:29 UTC 2025 - 439.6K bytes - Viewed (0) -
kubectl create secret generic | Kubernetes
Synopsis Create a secret based on a file, directory, or specified literal value. A single secret may package one or more key/value pairs. When creating a secret based on a file, the key will default to the basename of the file, and the value will default to the file content. If the basename is an invalid key or you wish to chose your own, you may specify an alternate key.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_secret_generic/Registered: Wed Feb 12 06:38:47 UTC 2025 - 440.3K bytes - Viewed (0) -
kubectl create quota | Kubernetes
Synopsis Create a resource quota with the specified name, hard limits, and optional scopes. kubectl create quota NAME [--hard=key1=value1,key2=value2] [--scopes=Scope1,Scope2] [--dry-run=server|client|none] Examples # Create a new resource quota named my-quota kubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3,replicationcontrollers=2,resourcequotas=1,secrets=5,persistentvolumeclaims=10 # Create a new resource quota named best-effort kubectl create quota best-effort --hard=pods=100 --scopes=BestEffort Options --allow-missing-template-keys Default: true If true, ignore any errors in templates when a field or map key is missing in the template.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_quota/Registered: Wed Feb 12 06:41:38 UTC 2025 - 439.5K bytes - Viewed (0) -
Node Resource Managers | Kubernetes
In order to support latency-critical and high-throughput workloads, Kubernetes offers a suite of Resource Managers. The managers aim to co-ordinate and optimise the alignment of node's resources for pods configured with a specific requirement for CPUs, devices, and memory (hugepages) resources. Hardware topology alignment policies Topology Manager is a kubelet component that aims to coordinate the set of components that are responsible for these optimizations. The overall resource management process is governed using the policy you specify.kubernetes.io/docs/concepts/policy/node-resource-managers/Registered: Wed Feb 12 05:48:50 UTC 2025 - 455.5K bytes - Viewed (0) -
CronJob | Kubernetes
A CronJob starts one-time Jobs on a repeating schedule.kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/Registered: Wed Feb 12 05:50:34 UTC 2025 - 449.3K bytes - Viewed (0) -
Process ID Limits And Reservations | Kubernetes
FEATURE STATE: Kubernetes v1.20 [stable] Kubernetes allow you to limit the number of process IDs (PIDs) that a Pod can use. You can also reserve a number of allocatable PIDs for each node for use by the operating system and daemons (rather than by Pods). Process IDs (PIDs) are a fundamental resource on nodes. It is trivial to hit the task limit without hitting any other resource limits, which can then cause instability to a host machine.kubernetes.io/docs/concepts/policy/pid-limiting/Registered: Wed Feb 12 05:49:32 UTC 2025 - 434.4K bytes - Viewed (0) -
Volume Health Monitoring | Kubernetes
FEATURE STATE: Kubernetes v1.21 [alpha] CSI volume health monitoring allows CSI Drivers to detect abnormal volume conditions from the underlying storage systems and report them as events on PVCs or Pods. Volume health monitoring Kubernetes volume health monitoring is part of how Kubernetes implements the Container Storage Interface (CSI). Volume health monitoring feature is implemented in two components: an External Health Monitor controller, and the kubelet. If a CSI Driver supports Volume Health Monitoring feature from the controller side, an event will be reported on the related PersistentVolumeClaim (PVC) when an abnormal volume condition is detected on a CSI volume.kubernetes.io/docs/concepts/storage/volume-health-monitoring/Registered: Wed Feb 12 05:49:58 UTC 2025 - 432.8K bytes - Viewed (0) -
Namespaces Walkthrough | Kubernetes
Kubernetes namespaces help different projects, teams, or customers to share a Kubernetes cluster. It does this by providing the following: A scope for Names. A mechanism to attach authorization and policy to a subsection of the cluster. Use of multiple namespaces is optional. This example demonstrates how to use Kubernetes namespaces to subdivide your cluster. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.kubernetes.io/docs/tasks/administer-cluster/namespaces-walkthrough/Registered: Wed Feb 12 06:05:43 UTC 2025 - 461.5K bytes - Viewed (0) -
Use Antrea for NetworkPolicy | Kubernetes
This page shows how to install and use Antrea CNI plugin on Kubernetes. For background on Project Antrea, read the Introduction to Antrea. Before you begin You need to have a Kubernetes cluster. Follow the kubeadm getting started guide to bootstrap one. Deploying Antrea with kubeadm Follow Getting Started guide to deploy Antrea for kubeadm. What's next Once your cluster is running, you can follow the Declare Network Policy to try out Kubernetes NetworkPolicy.kubernetes.io/docs/tasks/administer-cluster/network-policy-provider/antrea-network-policy/Registered: Wed Feb 12 06:05:52 UTC 2025 - 428.9K bytes - Viewed (0) -
Building a Basic DaemonSet | Kubernetes
This page demonstrates how to build a basic DaemonSet that runs a Pod on every node in a Kubernetes cluster. It covers a simple use case of mounting a file from the host, logging its contents using an init container, and utilizing a pause container. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. It is recommended to run this tutorial on a cluster with at least two nodes that are not acting as control plane hosts.kubernetes.io/docs/tasks/manage-daemon/create-daemon-set/Registered: Wed Feb 12 06:20:28 UTC 2025 - 440K bytes - Viewed (0)