- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 61 - 70 of 677 for host:kubernetes.io (0.03 sec)
-
Windows in Kubernetes | Kubernetes
Kubernetes supports nodes that run Microsoft Windows.kubernetes.io/docs/concepts/windows/Registered: Mon Mar 31 06:11:21 UTC 2025 - 429.7K bytes - Viewed (0) -
kubectl create ingress | Kubernetes
Synopsis Create an ingress with the specified name. kubectl create ingress NAME --rule=host/path=service:port[,tls[=secret]] Examples # Create a single ingress called 'simple' that directs requests to foo.com/bar to svc # svc1:8080 with a TLS secret "my-cert" kubectl create ingress simple --rule="foo.com/bar=svc1:8080,tls=my-cert" # Create a catch all ingress of "/path" pointing to service svc:port and Ingress Class as "otheringress" kubectl create ingress catch-all --class=otheringress --rule="/path=svc:port" # Create an ingress with two annotations: ingress.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_ingress/Registered: Mon Mar 31 06:43:18 UTC 2025 - 441.8K bytes - Viewed (0) -
kubectl create namespace | Kubernetes
Synopsis Create a namespace with the specified name. kubectl create namespace NAME [--dry-run=server|client|none] Examples # Create a new namespace named my-namespace kubectl create namespace my-namespace 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. Only applies to golang and jsonpath output formats. --dry-run string[="unchanged"] Default: "none" Must be "none", "server", or "client". If client strategy, only print the object that would be sent, without sending it.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_namespace/ Similar Results (1)Registered: Mon Mar 31 06:43:22 UTC 2025 - 439.5K bytes - Viewed (0) -
kubectl config get-contexts | Kubernetes
Synopsis Display one or many contexts from the kubeconfig file. kubectl config get-contexts [(-o|--output=)name)] Examples # List all the contexts in your kubeconfig file kubectl config get-contexts # Describe one context in your kubeconfig file kubectl config get-contexts my-context Options -h, --help help for get-contexts --no-headers When using the default or custom-column output format, don't print headers (default print headers). -o, --output string Output format. One of: (name). Parent Options Inherited --as string Username to impersonate for the operation.kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_get-contexts/Registered: Mon Mar 31 06:43:32 UTC 2025 - 437.1K bytes - Viewed (0) -
kubectl apply set-last-applied | Kubernetes
Synopsis Set the latest last-applied-configuration annotations by setting it to match the contents of a file. This results in the last-applied-configuration being updated as though 'kubectl apply -f<file> ' was run, without updating any other parts of the object. kubectl apply set-last-applied -f FILENAME Examples # Set the last-applied-configuration of a resource to match the contents of a file kubectl apply set-last-applied -f deploy.yaml # Execute set-last-applied against each configuration file in a directory kubectl apply set-last-applied -f path/ # Set the last-applied-configuration of a resource to match the contents of a file; will create the annotation if it does not already exist kubectl apply set-last-applied -f deploy.kubernetes.io/docs/reference/kubectl/generated/kubectl_apply/kubectl_apply_set-last-applied/Registered: Mon Mar 31 06:42:29 UTC 2025 - 439.8K bytes - Viewed (0) -
Virtual IPs and Service Proxies | Kubernetes
Every node in a Kubernetes cluster runs a kube-proxy (unless you have deployed your own alternative component in place of kube-proxy). The kube-proxy component is responsible for implementing a virtual IP mechanism for Services of type other than ExternalName. Each instance of kube-proxy watches the Kubernetes control plane for the addition and removal of Service and EndpointSlice objects. For each Service, kube-proxy calls appropriate APIs (depending on the kube-proxy mode) to configure the node to capture traffic to the Service's clusterIP and port, and redirect that traffic to one of the Service's endpoints (usually a Pod, but possibly an arbitrary user-provided IP address).kubernetes.io/docs/reference/networking/virtual-ips/Registered: Mon Mar 31 06:42:52 UTC 2025 - 475.5K bytes - Viewed (0) -
kubectl api-resources | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/reference/kubectl/generated/kubectl_api-resources/Registered: Mon Mar 31 06:42:40 UTC 2025 - 437.8K bytes - Viewed (0) -
kubectl describe | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/reference/kubectl/generated/kubectl_describe/Registered: Mon Mar 31 06:47:45 UTC 2025 - 438.2K bytes - Viewed (0) -
kubectl cp | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/reference/kubectl/generated/kubectl_cp/Registered: Mon Mar 31 06:44:42 UTC 2025 - 439.5K bytes - Viewed (0) -
kubectl config rename-context | Kubernetes
Synopsis Renames a context from the kubeconfig file. CONTEXT_NAME is the context name that you want to change. NEW_NAME is the new name you want to set. Note: If the context being renamed is the 'current-context', this field will also be updated. kubectl config rename-context CONTEXT_NAME NEW_NAME Examples # Rename the context 'old-name' to 'new-name' in your kubeconfig file kubectl config rename-context old-name new-name Options -h, --help help for rename-contextkubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_rename-context/ Similar Results (7)Registered: Mon Mar 31 06:45:19 UTC 2025 - 436.5K bytes - Viewed (0)