Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 81 - 90 of 685 for filetype:html (0.04 sec)

  1. kubectl create deployment | Kubernetes

    Synopsis Create a deployment with the specified name. kubectl create deployment NAME --image=image -- [COMMAND] [args...] Examples # Create a deployment named my-dep that runs the busybox image kubectl create deployment my-dep --image=busybox # Create a deployment with a command kubectl create deployment my-dep --image=busybox -- date # Create a deployment named my-dep that runs the nginx image with 3 replicas kubectl create deployment my-dep --image=nginx --replicas=3 # Create a deployment named my-dep that runs the busybox image and expose port 5701 kubectl create deployment my-dep --image=busybox --port=5701 # Create a deployment named my-dep that runs multiple containers kubectl create deployment my-dep --image=busybox:latest --image=ubuntu:latest --image=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_create/kubectl_create_deployment/
    Registered: Fri Jun 27 07:20:58 UTC 2025
    - 460K bytes
    - Viewed (0)
  2. kubectl auth can-i | Kubernetes

    Synopsis Check whether an action is allowed. VERB is a logical Kubernetes API verb like 'get', 'list', 'watch', 'delete', etc. TYPE is a Kubernetes resource. Shortcuts and groups will be resolved. NONRESOURCEURL is a partial URL that starts with "/". NAME is the name of a particular Kubernetes resource. This command pairs nicely with impersonation. See --as global flag. kubectl auth can-i VERB [TYPE | TYPE/NAME | NONRESOURCEURL] Examples # Check to see if I can create pods in any namespace kubectl auth can-i create pods --all-namespaces # Check to see if I can list deployments in my current namespace kubectl auth can-i list deployments.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_auth/kubectl_auth_can-i/
    Registered: Fri Jun 27 07:20:14 UTC 2025
    - 457K bytes
    - Viewed (0)
  3. kubectl config view | Kubernetes

    Synopsis Display merged kubeconfig settings or a specified kubeconfig file. You can use --output jsonpath={...} to extract specific values using a jsonpath expression. kubectl config view [flags] Examples # Show merged kubeconfig settings kubectl config view # Show merged kubeconfig settings, raw certificate data, and exposed secrets kubectl config view --raw # Get the password for the e2e user kubectl config view -o jsonpath='{.users[?(@.name == "e2e")].user.password}' 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_config/kubectl_config_view/
    Registered: Fri Jun 27 07:20:37 UTC 2025
    - 456.9K bytes
    - Viewed (0)
  4. WebhookAdmission Configuration (v1) | Kubernetes

    Package v1 is the v1 version of the API. Resource Types WebhookAdmission WebhookAdmission WebhookAdmission provides configuration for the webhook admission controller. FieldDescription apiVersionstringapiserver.config.k8s.io/v1 kindstringWebhookAdmission kubeConfigFile [Required] string KubeConfigFile is the path to the kubeconfig file.
    kubernetes.io/docs/reference/config-api/apiserver-webhookadmission.v1/
    Registered: Fri Jun 27 07:35:47 UTC 2025
    - 446.2K bytes
    - Viewed (0)
  5. Blog guidelines | Kubernetes

    These guidelines cover the main Kubernetes blog and the Kubernetes contributor blog. All blog content must also adhere to the overall policy in the content guide. Before you begin Make sure you are familiar with the introduction sections of contributing to Kubernetes blogs, not just to learn about the two official blogs and the differences between them, but also to get an overview of the process. Original content The Kubernetes project accepts original content only, in English.
    kubernetes.io/docs/contribute/blog/guidelines/
    Registered: Fri Jun 27 07:36:16 UTC 2025
    - 455.9K bytes
    - Viewed (0)
  6. kuberc (v1alpha1) | Kubernetes

    Resource Types Preference Preference Preference stores elements of KubeRC configuration file FieldDescription apiVersionstringkubectl.config.k8s.io/v1alpha1 kindstringPreference overrides [Required] []CommandOverride overrides allows changing default flag values of commands. This is especially useful, when user doesn't want to explicitly set flags each time. aliases [Required] []AliasOverride aliases allows defining command aliases for existing kubectl commands, with optional default flag values. If the alias name collides with a built-in command, built-in command always takes precedence. Flag overrides defined in the overrides section do NOT apply to aliases for the same command.
    kubernetes.io/docs/reference/config-api/kuberc.v1alpha1/
    Registered: Fri Jun 27 07:37:15 UTC 2025
    - 451.9K bytes
    - Viewed (0)
  7. Scheduling | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/scheduling/
    Registered: Fri Jun 27 07:35:30 UTC 2025
    - 444.7K bytes
    - Viewed (0)
  8. Security | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/tutorials/security/
    Registered: Fri Jun 27 07:12:02 UTC 2025
    - 446.3K bytes
    - Viewed (0)
  9. Explore Termination Behavior for Pods And Their...

    Once you connected your Application with Service following steps like those outlined in Connecting Applications with Services, you have a continuously running, replicated application, that is exposed on a network. This tutorial helps you look at the termination flow for Pods and to explore ways to implement graceful connection draining. Termination process for Pods and their endpoints There are often cases when you need to terminate a Pod - be it to upgrade or scale down.
    kubernetes.io/docs/tutorials/services/pods-and-endpoint-termination-flow/
    Registered: Fri Jun 27 07:11:48 UTC 2025
    - 465.3K bytes
    - Viewed (0)
  10. Mutating Admission Policy | Kubernetes

    FEATURE STATE: Kubernetes v1.32 [alpha] This page provides an overview of MutatingAdmissionPolicies. What are MutatingAdmissionPolicies? Mutating admission policies offer a declarative, in-process alternative to mutating admission webhooks. Mutating admission policies use the Common Expression Language (CEL) to declare mutations to resources. Mutations can be defined either with an apply configuration that is merged using the server side apply merge strategy, or a JSON patch. Mutating 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/mutating-admission-policy/
    Registered: Fri Jun 27 07:12:35 UTC 2025
    - 477.8K bytes
    - Viewed (0)
Back to top