Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 401 - 410 of 669 for host:kubernetes.io (0.03 sec)

  1. kubectl scale | Kubernetes

    Synopsis Set a new size for a deployment, replica set, replication controller, or stateful set. Scale also allows users to specify one or more preconditions for the scale action. If --current-replicas or --resource-version is specified, it is validated before the scale is attempted, and it is guaranteed that the precondition holds true when the scale is sent to the server. kubectl scale [--resource-version=version] [--current-replicas=count] --replicas=COUNT (-f FILENAME | TYPE NAME) Examples # Scale a replica set named 'foo' to 3 kubectl scale --replicas=3 rs/foo # Scale a resource identified by type and name specified in "foo.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_scale/
    Registered: Fri Nov 15 07:22:14 UTC 2024
    - 437.5K bytes
    - Viewed (0)
  2. 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: Fri Nov 15 07:27:41 UTC 2024
    - 437.4K bytes
    - Viewed (0)
  3. kubectl create cronjob | Kubernetes

    Synopsis Create a cron job with the specified name. kubectl create cronjob NAME --image=image --schedule='0/5 * * * ?' -- [COMMAND] [args...] [flags] Examples # Create a cron job kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" # Create a cron job with a command kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" -- date 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_cronjob/ Similar Results (1)
    Registered: Fri Nov 15 07:27:20 UTC 2024
    - 436.4K bytes
    - Viewed (0)
  4. kubectl edit | Kubernetes

    Synopsis Edit a resource from the default editor. The edit command allows you to directly edit any API resource you can retrieve via the command-line tools. It will open the editor defined by your KUBE_EDITOR, or EDITOR environment variables, or fall back to 'vi' for Linux or 'notepad' for Windows. When attempting to open the editor, it will first attempt to use the shell that has been defined in the 'SHELL' environment variable.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_edit/
    Registered: Fri Nov 15 07:27:26 UTC 2024
    - 437.4K bytes
    - Viewed (0)
  5. kube-controller-manager Configuration (v1alpha1...

    Resource Types CloudControllerManagerConfiguration LeaderMigrationConfiguration KubeControllerManagerConfiguration NodeControllerConfiguration Appears in: CloudControllerManagerConfiguration NodeControllerConfiguration contains elements describing NodeController. FieldDescription ConcurrentNodeSyncs [Required] int32 ConcurrentNodeSyncs is the number of workers concurrently synchronizing nodes ServiceControllerConfiguration Appears in: CloudControllerManagerConfiguration KubeControllerManagerConfiguration ServiceControllerConfiguration contains elements describing ServiceController. FieldDescription ConcurrentServiceSyncs [Required] int32 concurrentServiceSyncs is the number of services that are allowed to sync concurrently. Larger number = more responsive service management, but more CPU (and network) load. CloudControllerManagerConfiguration CloudControllerManagerConfiguration contains elements describing cloud-controller manager.
    kubernetes.io/docs/reference/config-api/kube-controller-manager-config.v1alpha1/
    Registered: Fri Nov 15 07:31:47 UTC 2024
    - 493.6K bytes
    - Viewed (0)
  6. kube-scheduler Configuration (v1) | Kubernetes

    Resource Types DefaultPreemptionArgs InterPodAffinityArgs KubeSchedulerConfiguration NodeAffinityArgs NodeResourcesBalancedAllocationArgs NodeResourcesFitArgs PodTopologySpreadArgs VolumeBindingArgs ClientConnectionConfiguration Appears in: KubeSchedulerConfiguration ClientConnectionConfiguration contains details for constructing a client. FieldDescription kubeconfig [Required] string kubeconfig is the path to a KubeConfig file. acceptContentTypes [Required] string acceptContentTypes defines the Accept header sent by clients when connecting to a server, overriding the default value of 'application/json'. This field will control all connections to the server used by a particular client. contentType [Required] string contentType is the content type used when sending data to the server from this client.
    kubernetes.io/docs/reference/config-api/kube-scheduler-config.v1/
    Registered: Fri Nov 15 07:33:35 UTC 2024
    - 468.3K bytes
    - Viewed (0)
  7. Documentation Content Guide | Kubernetes

    This page contains guidelines for Kubernetes documentation. If you have questions about what's allowed, join the #sig-docs channel in Kubernetes Slack and ask! You can register for Kubernetes Slack at https://slack.k8s.io/. For information on creating new content for the Kubernetes docs, follow the style guide. Overview Source for the Kubernetes website, including the docs, resides in the kubernetes/website repository. Located in the kubernetes/website/content/<language_code>/docs folder, the majority of Kubernetes documentation is specific to the Kubernetes project.
    kubernetes.io/docs/contribute/style/content-guide/
    Registered: Fri Nov 15 07:37:36 UTC 2024
    - 429K bytes
    - Viewed (0)
  8. Adding entries to Pod /etc/hosts with HostAlias...

    Adding entries to a Pod's /etc/hosts file provides Pod-level override of hostname resolution when DNS and other options are not applicable. You can add these custom entries with the HostAliases field in PodSpec. The Kubernetes project recommends modifying DNS configuration using the hostAliases field (part of the .spec for a Pod), and not by using an init container or other means to edit /etc/hosts directly. Change made in other ways may be overwritten by the kubelet during Pod creation or restart.
    kubernetes.io/docs/tasks/network/customize-hosts-file-for-pods/
    Registered: Fri Nov 15 07:01:46 UTC 2024
    - 436.1K bytes
    - Viewed (0)
  9. Updating Configuration via a ConfigMap | Kubern...

    This page provides a step-by-step example of updating configuration within a Pod via a ConfigMap and builds upon the Configure a Pod to Use a ConfigMap task. At the end of this tutorial, you will understand how to change the configuration for a running application. This tutorial uses the alpine and nginx images as examples. 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/tutorials/configuration/updating-configuration-via-a-configmap/
    Registered: Fri Nov 15 07:04:58 UTC 2024
    - 518.1K bytes
    - Viewed (0)
  10. Connecting Applications with Services | Kubernetes

    The Kubernetes model for connecting containers Now that you have a continuously running, replicated application you can expose it on a network. Kubernetes assumes that pods can communicate with other pods, regardless of which host they land on. Kubernetes gives every pod its own cluster-private IP address, so you do not need to explicitly create links between pods or map container ports to host ports. This means that containers within a Pod can all reach each other's ports on localhost, and all pods in a cluster can see each other without NAT.
    kubernetes.io/docs/tutorials/services/connect-applications-service/
    Registered: Fri Nov 15 07:05:28 UTC 2024
    - 486.3K bytes
    - Viewed (0)
Back to top