Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: [xss] test %27 テスト

Results 431 - 440 of 673 for host:kubernetes.io (0.04 sec)

  1. Configure Minimum and Maximum Memory Constraint...

    Define a range of valid memory resource limits for a namespace, so that every new Pod in that namespace falls within the range you configure.
    kubernetes.io/docs/tasks/administer-cluster/manage-resources/memory-constraint-namespace/
    Registered: Wed Feb 12 05:56:57 UTC 2025
    - 459.1K bytes
    - Viewed (0)
  2. Node Shutdowns | Kubernetes

    In a Kubernetes cluster, a node can be shut down in a planned graceful way or unexpectedly because of reasons such as a power outage or something else external. A node shutdown could lead to workload failure if the node is not drained before the shutdown. A node shutdown can be either graceful or non-graceful. Graceful node shutdown FEATURE STATE: Kubernetes v1.21 [beta] (enabled by default: true) The kubelet attempts to detect node system shutdown and terminates pods running on the node.
    kubernetes.io/docs/concepts/cluster-administration/node-shutdown/
    Registered: Wed Feb 12 05:57:02 UTC 2025
    - 446.7K bytes
    - Viewed (0)
  3. Delete a StatefulSet | Kubernetes

    This task shows you how to delete a StatefulSet. Before you begin This task assumes you have an application running on your cluster represented by a StatefulSet. Deleting a StatefulSet You can delete a StatefulSet in the same way you delete other resources in Kubernetes: use the kubectl delete command, and specify the StatefulSet either by file or by name. kubectl delete -f <file.yaml> kubectl delete statefulsets <statefulset-name> You may need to delete the associated headless service separately after the StatefulSet itself is deleted.
    kubernetes.io/docs/tasks/run-application/delete-stateful-set/
    Registered: Wed Feb 12 06:10:36 UTC 2025
    - 433.7K bytes
    - Viewed (0)
  4. Enforce Pod Security Standards with Namespace L...

    Namespaces can be labeled to enforce the Pod Security Standards. The three policies privileged, baseline and restricted broadly cover the security spectrum and are implemented by the Pod Security admission controller. Before you begin Pod Security Admission was available by default in Kubernetes v1.23, as a beta. From version 1.25 onwards, Pod Security Admission is generally available. To check the version, enter kubectl version. Requiring the baseline Pod Security Standard with namespace labels This manifest defines a Namespace my-baseline-namespace that:
    kubernetes.io/docs/tasks/configure-pod-container/enforce-standards-namespace-labels/
    Registered: Wed Feb 12 06:10:00 UTC 2025
    - 437.1K bytes
    - Viewed (0)
  5. Admission Control in Kubernetes | Kubernetes

    This page provides an overview of admission controllers. An admission controller is a piece of code that intercepts requests to the Kubernetes API server prior to persistence of the resource, but after the request is authenticated and authorized. Several important features of Kubernetes require an admission controller to be enabled in order to properly support the feature. As a result, a Kubernetes API server that is not properly configured with the right set of admission controllers is an incomplete server that will not support all the features you expect.
    kubernetes.io/docs/reference/access-authn-authz/admission-controllers/
    Registered: Wed Feb 12 06:23:39 UTC 2025
    - 491.7K bytes
    - Viewed (0)
  6. Validating Admission Policy | Kubernetes

    FEATURE STATE: Kubernetes v1.30 [stable] This page provides an overview of Validating Admission Policy. What is Validating Admission Policy? Validating admission policies offer a declarative, in-process alternative to validating admission webhooks. Validating admission policies use the Common Expression Language (CEL) to declare the validation rules of a policy. Validation admission policies are highly configurable, enabling policy authors to define policies that can be parameterized and scoped to resources as needed by cluster administrators.
    kubernetes.io/docs/reference/access-authn-authz/validating-admission-policy/
    Registered: Wed Feb 12 06:23:44 UTC 2025
    - 519.1K bytes
    - Viewed (0)
  7. kubectl reference | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/kubectl/generated/
    Registered: Wed Feb 12 06:32:58 UTC 2025
    - 430.3K bytes
    - Viewed (0)
  8. kubectl create service externalname | Kubernetes

    Synopsis Create an ExternalName service with the specified name. ExternalName service references to an external DNS address instead of only pods, which will allow application authors to reference services that exist off platform, on other clusters, or locally. kubectl create service externalname NAME --external-name external.name [--dry-run=server|client|none] Examples # Create a new ExternalName service named my-ns kubectl create service externalname my-ns --external-name bar.com 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_service_externalname/
    Registered: Wed Feb 12 06:35:24 UTC 2025
    - 439.6K bytes
    - Viewed (0)
  9. Kubelet Device Manager API Versions | Kubernetes

    This page provides details of version compatibility between the Kubernetes device plugin API, and different versions of Kubernetes itself. Compatibility matrix v1alpha1 v1beta1 Kubernetes 1.21 - ✓ Kubernetes 1.22 - ✓ Kubernetes 1.23 - ✓ Kubernetes 1.24 - ✓ Kubernetes 1.25 - ✓ Kubernetes 1.26 - ✓ Key: ✓ Exactly the same features / API objects in both device plugin API and the Kubernetes version. + The device plugin API has features or API objects that may not be present in the Kubernetes cluster, either because the device plugin API has added additional new API calls, or that the server has removed an old API call.
    kubernetes.io/docs/reference/node/device-plugin-api-versions/
    Registered: Wed Feb 12 06:34:43 UTC 2025
    - 429.7K bytes
    - Viewed (0)
  10. Generate Certificates Manually | Kubernetes

    When using client certificate authentication, you can generate certificates manually through easyrsa, openssl or cfssl. easyrsa easyrsa can manually generate certificates for your cluster. Download, unpack, and initialize the patched version of easyrsa3. curl -LO https://dl.k8s.io/easy-rsa/easy-rsa.tar.gz tar xzf easy-rsa.tar.gz cd easy-rsa-master/easyrsa3 ./easyrsa init-pki Generate a new certificate authority (CA). --batch sets automatic mode; --req-cn specifies the Common Name (CN) for the CA's new root certificate. ./easyrsa --batch "--req-cn=${MASTER_IP}@`date +%s`" build-ca nopass Generate server certificate and key.
    kubernetes.io/docs/tasks/administer-cluster/certificates/
    Registered: Wed Feb 12 06:01:19 UTC 2025
    - 453.8K bytes
    - Viewed (0)
Back to top