- Sort Score
- Result 10 results
- Languages All
- Labels All
Popular Words: test
Results 91 - 100 of 629 for host:kubernetes.io (0.06 sec)
-
kubectl certificate deny | Kubernetes
Synopsis Deny a certificate signing request. kubectl certificate deny allows a cluster admin to deny a certificate signing request (CSR). This action tells a certificate signing controller to not to issue a certificate to the requester. kubectl certificate deny (-f FILENAME | NAME) Examples # Deny CSR 'csr-sqgzp' kubectl certificate deny csr-sqgzp 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_certificate/kubectl_certificate_deny/Registered: Mon Oct 28 09:39:40 UTC 2024 - 435K bytes - Viewed (0) -
kubectl config set-cluster | Kubernetes
Synopsis Set a cluster entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values for those fields. kubectl config set-cluster NAME [--server=server] [--certificate-authority=path/to/certificate/authority] [--insecure-skip-tls-verify=true] [--tls-server-name=example.com] Examples # Set only the server field on the e2e cluster entry without touching other values kubectl config set-cluster e2e --server=https://1.2.3.4 # Embed certificate authority data for the e2e cluster entry kubectl config set-cluster e2e --embed-certs --certificate-authority=~/.kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set-cluster/Registered: Mon Oct 28 09:39:44 UTC 2024 - 434.5K bytes - Viewed (0) -
kubectl annotate | Kubernetes
Synopsis Update the annotations on one or more resources. All Kubernetes objects support the ability to store additional data with the object as annotations. Annotations are key/value pairs that can be larger than labels and include arbitrary string values such as structured JSON. Tools and system extensions may use annotations to store their own data. Attempting to set an annotation that already exists will fail unless --overwrite is set. If --resource-version is specified and does not match the current resource version on the server the command will fail.kubernetes.io/docs/reference/kubectl/generated/kubectl_annotate/Registered: Mon Oct 28 09:41:59 UTC 2024 - 438.5K bytes - Viewed (0) -
kubectl exec | Kubernetes
Synopsis Execute a command in a container. kubectl exec (POD | TYPE/NAME) [-c CONTAINER] [flags] -- COMMAND [args...] Examples # Get output from running the 'date' command from pod mypod, using the first container by default kubectl exec mypod -- date # Get output from running the 'date' command in ruby-container from pod mypod kubectl exec mypod -c ruby-container -- date # Switch to raw terminal mode; sends stdin to 'bash' in ruby-container from pod mypod # and sends stdout/stderr from 'bash' back to the client kubectl exec mypod -c ruby-container -i -t -- bash -il # List contents of /usr from the first container of pod mypod and sort by modification time # If the command you want to execute in the pod has any flags in common (e.kubernetes.io/docs/reference/kubectl/generated/kubectl_exec/Registered: Mon Oct 28 09:41:19 UTC 2024 - 436K bytes - Viewed (0) -
Create an External Load Balancer | Kubernetes
This page shows how to create an external load balancer. When creating a Service, you have the option of automatically creating a cloud load balancer. This provides an externally-accessible IP address that sends traffic to the correct port on your cluster nodes, provided your cluster runs in a supported environment and is configured with the correct cloud load balancer provider package. You can also use an Ingress in place of Service.kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/Registered: Mon Oct 28 09:04:21 UTC 2024 - 441.1K bytes - Viewed (0) -
Reference | Kubernetes
This section of the Kubernetes documentation contains references. API Reference Glossary - a comprehensive, standardized list of Kubernetes terminology Kubernetes API Reference One-page API Reference for Kubernetes v1.31 Using The Kubernetes API - overview of the API for Kubernetes. API access control - details on how Kubernetes controls API access Well-Known Labels, Annotations and Taints Officially supported client libraries To call the Kubernetes API from a programming language, you can use client libraries.kubernetes.io/docs/reference/Registered: Mon Oct 28 09:19:03 UTC 2024 - 432.8K bytes - Viewed (0) -
Using Source IP | Kubernetes
Applications running in a Kubernetes cluster find and communicate with each other, and the outside world, through the Service abstraction. This document explains what happens to the source IP of packets sent to different types of Services, and how you can toggle this behavior according to your needs. Before you begin Terminology This document makes use of the following terms: NAT Network address translation Source NAT Replacing the source IP on a packet; in this page, that usually means replacing with the IP address of a node.kubernetes.io/docs/tutorials/services/source-ip/Registered: Mon Oct 28 09:19:19 UTC 2024 - 449.5K bytes - Viewed (0) -
Instrumentation | Kubernetes
Instrumentation Kubernetes Component SLI Metrics CRI Pod & Container Metrics Collection of Pod & Container metrics vi...kubernetes.io/docs/reference/instrumentation/Registered: Mon Oct 28 09:29:16 UTC 2024 - 422.2K bytes - Viewed (0) -
Node Status | Kubernetes
The status of a node in Kubernetes is a critical aspect of managing a Kubernetes cluster. In this article, we'll cover the basics of monitoring and maintaining node status to ensure a healthy and stable cluster. Node status fields A Node's status contains the following information: Addresses Conditions Capacity and Allocatable Info You can use kubectl to view a Node's status and other details: kubectl describe node <insert-node-name-here> Each section of the output is described below.kubernetes.io/docs/reference/node/node-status/Registered: Mon Oct 28 09:29:31 UTC 2024 - 433.8K bytes - Viewed (0) -
kubectl auth | Kubernetes
Synopsis Inspect authorization. kubectl auth [flags] Options -h, --help help for auth --as string Username to impersonate for the operation. User could be a regular user or a service account in a namespace. --as-group strings Group to impersonate for the operation, this flag can be repeated to specify multiple groups. --as-uid string UID to impersonate for the operation. --cache-dir string Default: "$HOME/.kube/cache" Default cache directory --certificate-authority string Path to a cert file for the certificate authoritykubernetes.io/docs/reference/kubectl/generated/kubectl_auth/Registered: Mon Oct 28 09:29:54 UTC 2024 - 432.6K bytes - Viewed (0)