Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for deployments (0.33 sec)

  1. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // - Exact: match a request only if it exactly matches a specified rule.
      // For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
      // but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
      // a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.
      //
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // - Exact: match a request only if it exactly matches a specified rule.
      // For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
      // but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
      // a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.
      //
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.2.md

    create Deployment Beta resources after upgrading to 1.2. Not deleting the
    Deployment objects may cause the deployment controller to mistakenly match
    other pods and delete them, due to the selector API change.
         * Client (kubectl) and server versions must match (both 1.1 or both 1.2) for any
    Deployment-related operations.
         * Behavior change:
            * Deployment creates ReplicaSets instead of ReplicationControllers.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri Dec 04 06:36:19 GMT 2020
    - 41.4K bytes
    - Viewed (0)
  4. istioctl/pkg/validate/validate.go

      # Validate all yaml files under samples/bookinfo/networking directory
      istioctl validate -f samples/bookinfo/networking
    
      # Validate current deployments under 'default' namespace within the cluster
      kubectl get deployments -o yaml | istioctl validate -f -
    
      # Validate current services under 'default' namespace within the cluster
      kubectl get services -o yaml | istioctl validate -f -
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Jan 22 17:58:52 GMT 2024
    - 15K bytes
    - Viewed (0)
  5. README.md

    - For deployments that installed the MinIO server binary by hand, use [`mc admin update`](https://min.io/docs/minio/linux/reference/minio-mc-admin/mc-admin-update.html)
    
    ```sh
    mc admin update <minio alias, e.g., myminio>
    ```
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/concepts.md

    <img class="shadow" src="/img/deployment/concepts/image01.png">
    
    ---
    
    Now that we know the difference between the terms **process** and **program**, let's continue talking about deployments.
    
    ## Running on Startup
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/list.md

    ## Cluster Replication Metrics
    
    Metrics marked as ``Site Replication Only`` only populate on deployments with [Site Replication](https://min.io/docs/minio/linux/operations/install-deploy-manage/multi-site-replication.html) configurations.
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  8. istioctl/pkg/precheck/precheck.go

    	return nil
    }
    
    func checkPilot(cli kube.CLIClient, namespace string, messages *diag.Messages) error {
    	deployments, err := cli.Kube().AppsV1().Deployments(namespace).List(context.TODO(), metav1.ListOptions{
    		LabelSelector: "app=istiod",
    	})
    	if err != nil {
    		return err
    	}
    	for _, deployment := range deployments.Items {
    		scopingImpacted := false
    
    		// Obtain configmap to verify if affected features are used
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/values.yaml

        # . implies these objects are visible to only to sidecars in the same namespace, or if imported as a Sidecar.egress.host
        defaultConfigVisibilitySettings: []
    
        # Default node selector to be applied to all deployments so that all pods can be
        # constrained to run a particular nodes. Each component can overwrite these default
        # values by adding its node selector block in the relevant section below and setting
        # the desired values.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/values.yaml

        # . implies these objects are visible to only to sidecars in the same namespace, or if imported as a Sidecar.egress.host
        defaultConfigVisibilitySettings: []
    
        # Default node selector to be applied to all deployments so that all pods can be
        # constrained to run a particular nodes. Each component can overwrite these default
        # values by adding its node selector block in the relevant section below and setting
        # the desired values.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top