- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 581 - 590 of 669 for host:kubernetes.io (0.04 sec)
-
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: Fri Nov 15 07:24:20 UTC 2024 - 437.3K bytes - Viewed (0) -
kubectl create secret docker-registry | Kubernetes
Synopsis Create a new secret for use with Docker registries. Dockercfg secrets are used to authenticate against Docker registries. When using the Docker command line to push images, you can authenticate to a given registry by running: '$ docker login DOCKER_REGISTRY_SERVER --username=DOCKER_USER --password=DOCKER_PASSWORD --email=DOCKER_EMAIL'. That produces a ~/.dockercfg file that is used by subsequent 'docker push' and 'docker pull' commands to authenticate to the registry. The email address is optional.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_secret_docker-registry/Registered: Fri Nov 15 07:24:27 UTC 2024 - 438.6K bytes - Viewed (0) -
kubectl create secret tls | Kubernetes
Synopsis Create a TLS secret from the given public/private key pair. The public/private key pair must exist beforehand. The public key certificate must be .PEM encoded and match the given private key. kubectl create secret tls NAME --cert=path/to/cert/file --key=path/to/key/file [--dry-run=server|client|none] Examples # Create a new TLS secret named tls-secret with the given key pair kubectl create secret tls tls-secret --cert=path/to/tls.crt --key=path/to/tls.key 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_secret_tls/Registered: Fri Nov 15 07:24:35 UTC 2024 - 437.1K bytes - Viewed (0) -
kubectl top pod | Kubernetes
Synopsis Display resource (CPU/memory) usage of pods. The 'top pod' command allows you to see the resource consumption of pods. Due to the metrics pipeline delay, they may be unavailable for a few minutes since pod creation. kubectl top pod [NAME | -l label] Examples # Show metrics for all pods in the default namespace kubectl top pod # Show metrics for all pods in the given namespace kubectl top pod --namespace=NAMESPACE # Show metrics for a given pod and its containers kubectl top pod POD_NAME --containers # Show metrics for the pods defined by label name=myLabel kubectl top pod -l name=myLabel Options -A, --all-namespaces If present, list the requested object(s) across all namespaces.kubernetes.io/docs/reference/kubectl/generated/kubectl_top/kubectl_top_pod/Registered: Fri Nov 15 07:24:40 UTC 2024 - 435.9K bytes - Viewed (0) -
kubectl set serviceaccount | Kubernetes
Synopsis Update the service account of pod template resources. Possible resources (case insensitive) can be: replicationcontroller (rc), deployment (deploy), daemonset (ds), job, replicaset (rs), statefulset kubectl set serviceaccount (-f FILENAME | TYPE NAME) SERVICE_ACCOUNT Examples # Set deployment nginx-deployment's service account to serviceaccount1 kubectl set serviceaccount deployment nginx-deployment serviceaccount1 # Print the result (in YAML format) of updated nginx deployment with the service account from local file, without hitting the API server kubectl set sa -f nginx-deployment.kubernetes.io/docs/reference/kubectl/generated/kubectl_set/kubectl_set_serviceaccount/Registered: Fri Nov 15 07:25:51 UTC 2024 - 436.6K bytes - Viewed (0) -
kubectl diff | Kubernetes
Synopsis Diff configurations specified by file name or stdin between the current online configuration, and the configuration as it would be if applied. The output is always YAML. KUBECTL_EXTERNAL_DIFF environment variable can be used to select your own diff command. Users can use external commands with params too, example: KUBECTL_EXTERNAL_DIFF="colordiff -N -u" By default, the "diff" command available in your path will be run with the "-u" (unified diff) and "-N" (treat absent files as empty) options.kubernetes.io/docs/reference/kubectl/generated/kubectl_diff/Registered: Fri Nov 15 07:26:59 UTC 2024 - 435.4K bytes - Viewed (0) -
kubectl rollout | Kubernetes
Synopsis Manage the rollout of one or many resources. Valid resource types include: deployments daemonsets statefulsets kubectl rollout SUBCOMMAND Examples # Rollback to the previous deployment kubectl rollout undo deployment/abc # Check the rollout status of a daemonset kubectl rollout status daemonset/foo # Restart a deployment kubectl rollout restart deployment/abc # Restart deployments with the 'app=nginx' label kubectl rollout restart deployment --selector=app=nginx Options -h, --help help for rollout --as string Username to impersonate for the operation.kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout/Registered: Fri Nov 15 07:26:13 UTC 2024 - 433.6K bytes - Viewed (0) -
Component tools | Kubernetes
Component tools Feature Gates Feature Gates (removed) kubelet kube-apiserver kube-controller-manager kube-proxy kube-...kubernetes.io/docs/reference/command-line-tools-reference/Registered: Fri Nov 15 07:28:39 UTC 2024 - 423.7K bytes - Viewed (0) -
kubectl rollout resume | Kubernetes
Synopsis Resume a paused resource. Paused resources will not be reconciled by a controller. By resuming a resource, we allow it to be reconciled again. Currently only deployments support being resumed. kubectl rollout resume RESOURCE Examples # Resume an already paused deployment kubectl rollout resume deployment/nginx 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.kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout/kubectl_rollout_resume/Registered: Fri Nov 15 07:28:13 UTC 2024 - 435.4K bytes - Viewed (0) -
kube-proxy Configuration (v1alpha1) | Kubernetes
Resource Types KubeProxyConfiguration ClientConnectionConfiguration Appears in: KubeProxyConfiguration KubeSchedulerConfiguration GenericControllerManagerConfiguration ClientConnectionConfiguration contains details for constructing a client. FieldDescription kubeconfig [Required] string kubeconfig is the path to a KubeConfig file. acceptContentTypes [Required] string acceptContentTypes defines the Accept header sent by clients when connecting to a server, overriding the default value of 'application/json'. This field will control all connections to the server used by a particular client. contentType [Required] string contentType is the content type used when sending data to the server from this client.kubernetes.io/docs/reference/config-api/kube-proxy-config.v1alpha1/Registered: Fri Nov 15 07:29:02 UTC 2024 - 451.6K bytes - Viewed (0)