- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 11 - 20 of 685 for host:kubernetes.io (0.03 sec)
-
Install and Set Up kubectl on Windows | Kubernetes
Before you begin You must use a kubectl version that is within one minor version difference of your cluster. For example, a v1.32 client can communicate with v1.31, v1.32, and v1.33 control planes. Using the latest compatible version of kubectl helps avoid unforeseen issues. Install kubectl on Windows The following methods exist for installing kubectl on Windows: Install kubectl binary on Windows (via direct download or curl) Install on Windows using Chocolatey, Scoop, or winget Install kubectl binary on Windows (via direct download or curl) You have two options for installing kubectl on your Windows devicekubernetes.io/docs/tasks/tools/install-kubectl-windows/Registered: Wed Apr 16 06:07:24 UTC 2025 - 451.1K bytes - Viewed (0) -
Configure Pod Initialization | Kubernetes
This page shows how to use an Init Container to initialize a Pod before an application Container runs. 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/configure-pod-container/configure-pod-initialization/Registered: Wed Apr 16 06:08:15 UTC 2025 - 445.6K 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: Wed Apr 16 06:08:49 UTC 2025 - 444.2K bytes - Viewed (0) -
Run a Replicated Stateful Application | Kubernetes
This page shows how to run a replicated stateful application using a StatefulSet. This application is a replicated MySQL database. The example topology has a single primary server and multiple replicas, using asynchronous row-based replication. Note:This is not a production configuration. MySQL settings remain on insecure defaults to keep the focus on general patterns for running stateful applications in Kubernetes. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.kubernetes.io/docs/tasks/run-application/run-replicated-stateful-application/Registered: Wed Apr 16 06:17:02 UTC 2025 - 504.1K bytes - Viewed (0) -
Perform a Rolling Update on a DaemonSet | Kuber...
This page shows how to perform a rolling update on a DaemonSet. 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/manage-daemon/update-daemon-set/Registered: Wed Apr 16 06:16:40 UTC 2025 - 464.5K bytes - Viewed (0) -
Indexed Job for Parallel Processing with Static...
FEATURE STATE: Kubernetes v1.24 [stable] In this example, you will run a Kubernetes Job that uses multiple parallel worker processes. Each worker is a different container running in its own Pod. The Pods have an index number that the control plane sets automatically, which allows each Pod to identify which part of the overall task to work on. The pod index is available in the annotation batch.kubernetes.io/job-completion-index as a string representing its decimal value.kubernetes.io/docs/tasks/job/indexed-parallel-processing-static/Registered: Wed Apr 16 06:16:27 UTC 2025 - 456.8K bytes - Viewed (0) -
Manual Rotation of CA Certificates | Kubernetes
This page shows how to manually rotate the certificate authority (CA) certificates. 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/tls/manual-rotation-of-ca-certificates/Registered: Wed Apr 16 06:15:50 UTC 2025 - 445.9K bytes - Viewed (0) -
Restrict a Container's Syscalls with seccomp | ...
FEATURE STATE: Kubernetes v1.19 [stable] Seccomp stands for secure computing mode and has been a feature of the Linux kernel since version 2.6.12. It can be used to sandbox the privileges of a process, restricting the calls it is able to make from userspace into the kernel. Kubernetes lets you automatically apply seccomp profiles loaded onto a node to your Pods and containers. Identifying the privileges required for your workloads can be difficult.kubernetes.io/docs/tutorials/security/seccomp/Registered: Wed Apr 16 06:26:30 UTC 2025 - 495.1K 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: Wed Apr 16 06:26:00 UTC 2025 - 445.6K bytes - Viewed (0) -
Imperative Management of Kubernetes Objects Usi...
Kubernetes objects can be created, updated, and deleted by using the kubectl command-line tool along with an object configuration file written in YAML or JSON. This document explains how to define and manage objects using configuration files. Before you begin Install kubectl. 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.kubernetes.io/docs/tasks/manage-kubernetes-objects/imperative-config/Registered: Wed Apr 16 06:11:21 UTC 2025 - 443.2K bytes - Viewed (0)