- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 301 - 310 of 699 for host:kubernetes.io (0.42 sec)
-
kubectl plugin list | Kubernetes
Synopsis List all available plugin files on a user's PATH. To see plugins binary names without the full path use --name-only flag. Available plugin files are those that are: - executable - anywhere on the user's PATH - begin with "kubectl-" kubectl plugin list [flags] Examples # List all available plugins kubectl plugin list # List only binary names of available plugins without paths kubectl plugin list --name-only Options -h, --help help for listkubernetes.io/docs/reference/kubectl/generated/kubectl_plugin/kubectl_plugin_list/Registered: Tue Sep 09 00:14:44 UTC 2025 - 463.2K bytes - Viewed (0) -
kubectl create role | Kubernetes
Synopsis Create a role with single rule. kubectl create role NAME --verb=verb --resource=resource.group/subresource [--resource-name=resourcename] [--dry-run=server|client|none] Examples # Create a role named "pod-reader" that allows user to perform "get", "watch" and "list" on pods kubectl create role pod-reader --verb=get --verb=list --verb=watch --resource=pods # Create a role named "pod-reader" with ResourceName specified kubectl create role pod-reader --verb=get --resource=pods --resource-name=readablepod --resource-name=anotherpod # Create a role named "foo" with API Group specified kubectl create role foo --verb=get,list,watch --resource=rs.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_role/Registered: Tue Sep 09 00:13:03 UTC 2025 - 467.5K bytes - Viewed (0) -
Helping as a blog writing buddy | Kubernetes
There are two official Kubernetes blogs, and the CNCF has its own blog where you can cover Kubernetes too. Read contributing to Kubernetes blogs to learn about these two blogs. When people contribute to either blog as an author, the Kubernetes project pairs up authors as writing buddies. This page explains how to fulfil the buddy role. You should make sure that you have at least read an outline of article submission before you read on within this page.kubernetes.io/docs/contribute/blog/writing-buddy/Registered: Tue Sep 09 00:19:36 UTC 2025 - 461K bytes - Viewed (0) -
Feature Gates | Kubernetes
This page contains an overview of the various feature gates an administrator can specify on different Kubernetes components. See feature stages for an explanation of the stages for a feature. Overview Feature gates are a set of key=value pairs that describe Kubernetes features. You can turn these features on or off using the --feature-gates command line flag on each Kubernetes component. Each Kubernetes component lets you enable or disable a set of feature gates that are relevant to that component.kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/Registered: Tue Sep 09 00:17:32 UTC 2025 - 624.1K bytes - Viewed (0) -
Scheduler Configuration | Kubernetes
FEATURE STATE: Kubernetes v1.25 [stable] You can customize the behavior of the kube-scheduler by writing a configuration file and passing its path as a command line argument. A scheduling Profile allows you to configure the different stages of scheduling in the kube-scheduler. Each stage is exposed in an extension point. Plugins provide scheduling behaviors by implementing one or more of these extension points. You can specify scheduling profiles by running kube-scheduler --config <filename>, using the KubeSchedulerConfiguration v1 struct.kubernetes.io/docs/reference/scheduling/config/Registered: Tue Sep 09 00:19:02 UTC 2025 - 502.1K bytes - Viewed (0) -
Learn Kubernetes Basics | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/tutorials/kubernetes-basics/Registered: Mon Sep 08 23:07:04 UTC 2025 - 460.8K bytes - Viewed (0) -
Use a SOCKS5 Proxy to Access the Kubernetes API...
FEATURE STATE: Kubernetes v1.24 [stable] This page shows how to use a SOCKS5 proxy to access the API of a remote Kubernetes cluster. This is useful when the cluster you want to access does not expose its API directly on the public internet. 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/extend-kubernetes/socks5-proxy-access-api/Registered: Mon Sep 08 23:08:25 UTC 2025 - 470K bytes - Viewed (0) -
Use Port Forwarding to Access Applications in a...
This page shows how to use kubectl port-forward to connect to a MongoDB server running in a Kubernetes cluster. This type of connection can be useful for database debugging. 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/access-application-cluster/port-forward-access-application-cluster/Registered: Mon Sep 08 23:08:33 UTC 2025 - 467.6K bytes - Viewed (0) -
Services | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/tutorials/services/Registered: Mon Sep 08 23:08:46 UTC 2025 - 454.8K bytes - Viewed (0) -
Using a Service to Expose Your App | Kubernetes
Objectives Learn about a Service in Kubernetes. Understand how labels and selectors relate to a Service. Expose an application outside a Kubernetes cluster. Overview of Kubernetes Services Kubernetes Pods are mortal. Pods have a lifecycle. When a worker node dies, the Pods running on the Node are also lost. A Replicaset might then dynamically drive the cluster back to the desired state via the creation of new Pods to keep your application running.kubernetes.io/docs/tutorials/kubernetes-basics/expose/expose-intro/Registered: Mon Sep 08 23:12:55 UTC 2025 - 474.7K bytes - Viewed (0)