- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 6511 - 6520 of about 10,000 for content_length:[100000 TO 499999] (0.13 sec)
-
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) -
Configuration properties :: Apache Log4j
Edit this Page Configuration properties Log4j contains a simple configuration properties sub-system that aggregates d...logging.apache.org/log4j/2.x/manual/systemproperties.htmlRegistered: Fri Nov 15 07:11:58 UTC 2024 - Last Modified: Wed Oct 16 06:37:39 UTC 2024 - 152.8K bytes - Viewed (0) -
Генераторы проектов - Шаблоны - FastAPI
fastapi.tiangolo.com/ru/project-generation/Registered: Fri Nov 15 07:12:37 UTC 2024 - 125K bytes - Viewed (0) -
Замеры производительности - FastAPI
fastapi.tiangolo.com/ru/benchmarks/Registered: Fri Nov 15 07:12:41 UTC 2024 - 115.8K bytes - Viewed (0) -
Response class - FastAPI
fastapi.tiangolo.com/ru/reference/response/Registered: Fri Nov 15 07:12:54 UTC 2024 - 168.9K 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) -
Git - git-pull Documentation
Português (Brasil) ▾ English Français Português (Brasil) 简体中文 Topics ▾ Setup and Config git config help bugreport Cre...git-scm.com/docs/git-pull/pt_BRRegistered: Fri Nov 15 07:17:47 UTC 2024 - Last Modified: Fri Nov 15 04:41:01 UTC 2024 - 128.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 apply | Kubernetes
Synopsis Apply a configuration to a resource by file name or stdin. The resource name must be specified. This resource will be created if it doesn't exist yet. To use 'apply', always create the resource initially with either 'apply' or 'create --save-config'. JSON and YAML formats are accepted. Alpha Disclaimer: the --prune functionality is not yet complete. Do not use unless you are aware of what the current state is.kubernetes.io/docs/reference/kubectl/generated/kubectl_apply/Registered: Fri Nov 15 07:18:41 UTC 2024 - 439.8K bytes - Viewed (0) -
kubectl cp | Kubernetes
Synopsis Copy files and directories to and from containers. kubectl cp <file-spec-src> <file-spec-dest> Examples # !!!Important Note!!! # Requires that the 'tar' binary is present in your container # image. If 'tar' is not present, 'kubectl cp' will fail. # # For advanced use cases, such as symlinks, wildcard expansion or # file mode preservation, consider using 'kubectl exec'. # Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace <some-namespace> tar cf - /tmp/foo | kubectl exec -i -n <some-namespace> <some-pod> -- tar xf - -C /tmp/bar # Copy /tmp/foo from a remote pod to /tmp/bar locally kubectl exec -n <some-namespace> <some-pod> -- tar cf - /tmp/foo | tar xf - -C /tmp/bar # Copy /tmp/foo_dir local directory to /tmp/bar_dir in a remote pod in the default namespace kubectl cp /tmp/foo_dir <some-pod>:/tmp/bar_dir # Copy /tmp/foo local file to /tmp/bar in a remote pod in a specific container kubectl cp /tmp/foo <some-pod>:/tmp/bar -c <specific-container> # Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace <some-namespace> kubectl cp /tmp/foo <some-namespace>/<some-pod>:/tmp/bar # Copy /tmp/foo from a remote pod to /tmp/bar locally kubectl cp <some-namespace>/<some-pod>:/tmp/foo /tmp/bar Options -c, --container string Container name.kubernetes.io/docs/reference/kubectl/generated/kubectl_cp/Registered: Fri Nov 15 07:17:16 UTC 2024 - 438.7K bytes - Viewed (0)