Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,020 for deploymentID (0.15 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

    import org.gradle.api.internal.StartParameterInternal
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.deployment.internal.DefaultContinuousExecutionGate
    import org.gradle.deployment.internal.Deployment
    import org.gradle.deployment.internal.DeploymentInternal
    import org.gradle.deployment.internal.DeploymentRegistryInternal
    import org.gradle.initialization.BuildRequestMetaData
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pkg/registry/apps/deployment/strategy_test.go

    					}},
    			},
    		},
    	}
    }
    
    func TestDeploymentStrategyValidate(t *testing.T) {
    	tests := []struct {
    		name       string
    		deployment *apps.Deployment
    	}{
    		{
    			name:       "validation on a new deployment with indivisible hugepages values",
    			deployment: newDeploymentWithHugePageValue(api.ResourceHugePagesPrefix+"2Mi", resource.MustParse("2.1Mi")),
    		},
    	}
    
    	for _, tc := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"":         "DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.",
    	"metadata": "Standard object metadata.",
    	"spec":     "Specification of the desired behavior of the Deployment.",
    	"status":   "Most recently observed status of the Deployment.",
    }
    
    func (Deployment) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  4. docs/multi-tenancy/README.md

    3. [Cloud Scale Deployment](#cloud-scale-deployment)
    
    ## 1. Standalone Deployment
    
    To host multiple tenants on a single machine, run one MinIO Server per tenant with a dedicated HTTPS port, configuration, and data directory.
    
    ### 1.1 Host Multiple Tenants on a Single Drive
    
    Use the following commands to host 3 tenants on a single drive:
    
    ```sh
    minio server --address :9001 /data/tenant1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. samples/helloworld/README.md

    containers in `helloworld.yaml` are configured with the request.
    The injected istio-proxy containers also include cpu requests,
    making the helloworld service ready for autoscaling.
    
    Enable autoscaling on both versions of the service:
    
    ```bash
    kubectl autoscale deployment helloworld-v1 --cpu-percent=50 --min=1 --max=10
    kubectl autoscale deployment helloworld-v2 --cpu-percent=50 --min=1 --max=10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // process failed deployments and a condition with a ProgressDeadlineExceeded
      // reason will be surfaced in the deployment status. Note that progress will
      // not be estimated during the time a deployment is paused. Defaults to 600s.
      // +optional
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    				client.PrependReactor("get", "deployments", func(clientgotesting.Action) (bool, runtime.Object, error) {
    					return true, &apps.Deployment{}, nil
    				})
    			},
    			expectedError: false,
    		},
    		{
    			name: "deployment get returns an error",
    			setupClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("get", "deployments", func(clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    						Resource:           metav1.GroupVersionResource{Group: "extensions", Version: "v1beta1", Resource: "deployments"},
    						SubResource:        "",
    						RequestKind:        &metav1.GroupVersionKind{Group: "apps", Version: "v1", Kind: "Deployment"},
    						RequestResource:    &metav1.GroupVersionResource{Group: "apps", Version: "v1", Resource: "deployments"},
    						RequestSubResource: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo.yaml

    ##################################################################################################
    # This file defines the services, service accounts, and deployments for the Bookinfo sample.
    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// progressDeadlineSeconds is the maximum time in seconds for a deployment to make progress before it
    	// is considered to be failed. The deployment controller will continue to
    	// process failed deployments and a condition with a ProgressDeadlineExceeded
    	// reason will be surfaced in the deployment status. Note that progress will
    	// not be estimated during the time a deployment is paused. Defaults to 600s.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top