- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 211 - 220 of 692 for host:kubernetes.io (0.03 sec)
-
Apply Pod Security Standards at the Cluster Lev...
Note This tutorial applies only for new clusters. Pod Security is an admission controller that carries out checks against the Kubernetes Pod Security Standards when new pods are created. It is a feature GA'ed in v1.25. This tutorial shows you how to enforce the baseline Pod Security Standard at the cluster level which applies a standard configuration to all namespaces in a cluster. To apply Pod Security Standards to specific namespaces, refer to Apply Pod Security Standards at the namespace level.kubernetes.io/docs/tutorials/security/cluster-level-pss/Registered: Wed Jul 16 08:37:51 UTC 2025 - 471.3K 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: Wed Jul 16 08:37:55 UTC 2025 - 475.5K bytes - Viewed (0) -
Certificates and Certificate Signing Requests |...
Kubernetes certificate and trust bundle APIs enable automation of X.509 credential provisioning by providing a programmatic interface for clients of the Kubernetes API to request and obtain X.509 certificates from a Certificate Authority (CA). There is also experimental (alpha) support for distributing trust bundles. Certificate signing requests FEATURE STATE: Kubernetes v1.19 [stable] A CertificateSigningRequest (CSR) resource is used to request that a certificate be signed by a denoted signer, after which the request may be approved or denied before finally being signed.kubernetes.io/docs/reference/access-authn-authz/certificate-signing-requests/Registered: Wed Jul 16 08:37:02 UTC 2025 - 504.5K bytes - Viewed (0) -
Audit Annotations | Kubernetes
This page serves as a reference for the audit annotations of the kubernetes.io namespace. These annotations apply to Event object from API group audit.k8s.io. Note:The following annotations are not used within the Kubernetes API. When you enable auditing in your cluster, audit event data is written using Event from API group audit.k8s.io. The annotations apply to audit events. Audit events are different from objects in the Event API (API group events.kubernetes.io/docs/reference/labels-annotations-taints/audit-annotations/Registered: Wed Jul 16 08:36:55 UTC 2025 - 460.3K bytes - Viewed (0) -
Services | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/tutorials/services/Registered: Wed Jul 16 08:37:26 UTC 2025 - 449.6K bytes - Viewed (0) -
Kubernetes API health endpoints | Kubernetes
The Kubernetes API server provides API endpoints to indicate the current status of the API server. This page describes these API endpoints and explains how you can use them. API endpoints for health The Kubernetes API server provides 3 API endpoints (healthz, livez and readyz) to indicate the current status of the API server. The healthz endpoint is deprecated (since Kubernetes v1.16), and you should use the more specific livez and readyz endpoints instead.kubernetes.io/docs/reference/using-api/health-checks/Registered: Wed Jul 16 08:31:25 UTC 2025 - 456.8K bytes - Viewed (0) -
Example: Deploying Cassandra with a StatefulSet...
This tutorial shows you how to run Apache Cassandra on Kubernetes. Cassandra, a database, needs persistent storage to provide data durability (application state). In this example, a custom Cassandra seed provider lets the database discover new Cassandra instances as they join the Cassandra cluster. StatefulSets make it easier to deploy stateful applications into your Kubernetes cluster. For more information on the features used in this tutorial, see StatefulSet. Note:Cassandra and Kubernetes both use the term node to mean a member of a cluster.kubernetes.io/docs/tutorials/stateful-application/cassandra/Registered: Wed Jul 16 08:31:53 UTC 2025 - 496.7K bytes - Viewed (0) -
kubectl create role | Kubernetes
Synopsis Create a role with single rule. kubectl create role NAME --verb=verb --resource=resource.group/subresource [--resource-name=resourcename] [--dry-run=server|client|none] Examples # Create a role named "pod-reader" that allows user to perform "get", "watch" and "list" on pods kubectl create role pod-reader --verb=get --verb=list --verb=watch --resource=pods # Create a role named "pod-reader" with ResourceName specified kubectl create role pod-reader --verb=get --resource=pods --resource-name=readablepod --resource-name=anotherpod # Create a role named "foo" with API Group specified kubectl create role foo --verb=get,list,watch --resource=rs.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_role/Registered: Wed Jul 16 08:50:36 UTC 2025 - 463.3K bytes - Viewed (0) -
kubectl rollout history | Kubernetes
Synopsis View previous rollout revisions and configurations. kubectl rollout history (TYPE NAME | TYPE/NAME) [flags] Examples # View the rollout history of a deployment kubectl rollout history deployment/abc # View the details of daemonset revision 3 kubectl rollout history daemonset/abc --revision=3 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_history/Registered: Wed Jul 16 09:04:29 UTC 2025 - 461.2K bytes - Viewed (0) -
kubectl rollout pause | Kubernetes
Synopsis Mark the provided resource as paused. Paused resources will not be reconciled by a controller. Use "kubectl rollout resume" to resume a paused resource. Currently only deployments support being paused. kubectl rollout pause RESOURCE Examples # Mark the nginx deployment as paused # Any current state of the deployment will continue its function; new updates # to the deployment will not have an effect as long as the deployment is paused kubectl rollout pause 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.kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout/kubectl_rollout_pause/ Similar Results (1)Registered: Wed Jul 16 09:04:35 UTC 2025 - 461.9K bytes - Viewed (0)