- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 181 - 190 of 669 for host:kubernetes.io (0.04 sec)
-
Windows in Kubernetes | Kubernetes
Kubernetes supports nodes that run Microsoft Windows.kubernetes.io/docs/concepts/windows/Registered: Fri Nov 15 06:34:36 UTC 2024 - 425.1K bytes - Viewed (0) -
Debug Pods | Kubernetes
This guide is to help users debug applications that are deployed into Kubernetes and not behaving correctly. This is not a guide for people who want to debug their cluster. For that you should check out this guide. Diagnosing the problem The first step in troubleshooting is triage. What is the problem? Is it your Pods, your Replication Controller or your Service? Debugging Pods Debugging Replication Controllers Debugging Services Debugging Pods The first step in debugging a Pod is taking a look at it.kubernetes.io/docs/tasks/debug/debug-application/debug-pods/Registered: Fri Nov 15 06:51:22 UTC 2024 - 436.8K bytes - Viewed (0) -
Troubleshooting Clusters | Kubernetes
Debugging common cluster issues.kubernetes.io/docs/tasks/debug/debug-cluster/Registered: Fri Nov 15 06:52:03 UTC 2024 - 454.2K bytes - Viewed (0) -
Define Environment Variables for a Container | ...
This page shows how to define environment variables for a container in a Kubernetes Pod. 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. If you do not already have a cluster, you can create one by using minikube or you can use one of these Kubernetes playgrounds:kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/Registered: Fri Nov 15 06:54:50 UTC 2024 - 440.8K bytes - Viewed (0) -
Using ABAC Authorization | Kubernetes
Attribute-based access control (ABAC) defines an access control paradigm whereby access rights are granted to users through the use of policies which combine attributes together. Policy File Format To enable ABAC mode, specify --authorization-policy-file=SOME_FILENAME and --authorization-mode=ABAC on startup. The file format is one JSON object per line. There should be no enclosing list or map, only one map per line. Each line is a "policy object", where each such object is a map with the following properties:kubernetes.io/docs/reference/access-authn-authz/abac/Registered: Fri Nov 15 07:08:45 UTC 2024 - 438.4K bytes - Viewed (0) -
Using kubectl to Create a Deployment | Kubernetes
Learn about application Deployments. Deploy your first app on Kubernetes with kubectl.kubernetes.io/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro/Registered: Fri Nov 15 07:06:59 UTC 2024 - 434.5K bytes - Viewed (0) -
API Access Control | Kubernetes
For an introduction to how Kubernetes implements and controls API access, read Controlling Access to the Kubernetes API. Reference documentation: Authenticating Authenticating with Bootstrap Tokens Admission Controllers Dynamic Admission Control Authorization Role Based Access Control Attribute Based Access Control Node Authorization Webhook Authorization Certificate Signing Requests including CSR approval and certificate signing Service accounts Developer guide Administration Kubelet Authentication & Authorization including kubelet TLS bootstrappingkubernetes.io/docs/reference/access-authn-authz/Registered: Fri Nov 15 07:08:20 UTC 2024 - 427.6K bytes - Viewed (0) -
kubeadm init | Kubernetes
This command initializes a Kubernetes control-plane node. Run this command in order to set up the Kubernetes control plane Synopsis Run this command in order to set up the Kubernetes control plane The "init" command executes the following phases: preflight Run pre-flight checks certs Certificate generation /ca Generate the self-signed Kubernetes CA to provision identities for other Kubernetes components /apiserver Generate the certificate for serving the Kubernetes API /apiserver-kubelet-client Generate the certificate for the API server to connect to kubelet /front-proxy-ca Generate the self-signed CA to provision identities for front proxy /front-proxy-client Generate the certificate for the front proxy client /etcd-ca Generate the self-signed CA to provision identities for etcd /etcd-server Generate the certificate for serving etcd /etcd-peer Generate the certificate for etcd nodes to communicate with each other /etcd-healthcheck-client Generate the certificate for liveness probes to healthcheck etcd /apiserver-etcd-client Generate the certificate the apiserver uses to access etcd /sa Generate a private key for signing service account tokens along with its public key kubeconfig Generate all kubeconfig files necessary to establish the control plane and the admin kubeconfig file /admin Generate a kubeconfig file for the admin to use and for kubeadm itself /super-admin Generate a kubeconfig file for the super-admin /kubelet Generate a kubeconfig file for the kubelet to use *only* for cluster bootstrapping purposes /controller-manager Generate a kubeconfig file for the controller manager to use /scheduler Generate a kubeconfig file for the scheduler to use etcd Generate static Pod manifest file for local etcd /local Generate the static Pod manifest file for a local, single-node local etcd instance control-plane Generate all static Pod manifest files necessary to establish the control plane /apiserver Generates the kube-apiserver static Pod manifest /controller-manager Generates the kube-controller-manager static Pod manifest /scheduler Generates the kube-scheduler static Pod manifest kubelet-start Write kubelet settings and (re)start the kubelet upload-config Upload the kubeadm and kubelet configuration to a ConfigMap /kubeadm Upload the kubeadm ClusterConfiguration to a ConfigMap /kubelet Upload the kubelet component config to a ConfigMap upload-certs Upload certificates to kubeadm-certs mark-control-plane Mark a node as a control-plane bootstrap-token Generates bootstrap tokens used to join a node to a cluster kubelet-finalize Updates settings relevant to the kubelet after TLS bootstrap /enable-client-cert-rotation Enable kubelet client certificate rotation /experimental-cert-rotation Enable kubelet client certificate rotation (DEPRECATED: use 'enable-client-cert-rotation' instead) addon Install required addons for passing conformance tests /coredns Install the CoreDNS addon to a Kubernetes cluster /kube-proxy Install the kube-proxy addon to a Kubernetes cluster show-join-command Show the join command for control-plane and worker node kubeadm init [flags] Options --apiserver-advertise-address string The IP address the API Server will advertise it's listening on.kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-init/Registered: Fri Nov 15 07:17:22 UTC 2024 - 479.2K bytes - Viewed (0) -
kubectl create | Kubernetes
Synopsis Create a resource from a file or from stdin. JSON and YAML formats are accepted. kubectl create -f FILENAME Examples # Create a pod using the data in pod.json kubectl create -f ./pod.json # Create a pod based on the JSON passed into stdin cat pod.json | kubectl create -f - # Edit the data in registry.yaml in JSON then create the resource using the edited data kubectl create -f registry.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/Registered: Fri Nov 15 07:16:55 UTC 2024 - 438.1K bytes - Viewed (0) -
kubectl cordon | Kubernetes
Synopsis Mark node as unschedulable. kubectl cordon NODE Examples # Mark node "foo" as unschedulable kubectl cordon foo Options --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. If server strategy, submit server-side request without persisting the resource. -h, --help help for cordon -l, --selector string Selector (label query) to filter on, supports '=', '==', and '!kubernetes.io/docs/reference/kubectl/generated/kubectl_cordon/ Similar Results (1)Registered: Fri Nov 15 07:17:00 UTC 2024 - 433K bytes - Viewed (0)