Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,313 for cdeployment (0.45 sec)

  1. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/instances.go

    }
    
    func (i Instances) MustWorkloads() Workloads {
    	out, err := i.Workloads()
    	if err != nil {
    		panic(err)
    	}
    	return out
    }
    
    // IsDeployment returns true if there is only one deployment contained in the Instances
    func (i Instances) IsDeployment() bool {
    	return len(i.Services()) == 1
    }
    
    func (i Instances) ContainsTarget(t Target) bool {
    	return i.Contains(t.Instances()...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/controller/deployment/config/types.go

    // DeploymentControllerConfiguration contains elements describing DeploymentController.
    type DeploymentControllerConfiguration struct {
    	// concurrentDeploymentSyncs is the number of deployment objects that are
    	// allowed to sync concurrently. Larger number = more responsive deployments,
    	// but more CPU (and network) load.
    	ConcurrentDeploymentSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 12:00:53 UTC 2022
    - 949 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/deployment/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Types for defining and managing deployments.
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 14 05:04:10 UTC 2017
    - 721 bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/services.go

    // Services is a set of Instances that share the same FQDN. While an Instance contains
    // multiple deployments (a single service in a single cluster), Instances contains multiple
    // deployments that may contain multiple Services.
    type Services []Instances
    
    // GetByService finds the first Instances with the given Service name. It is possible to have multiple deployments
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/deployment/internal/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Internal types for handling deployments.
     */
    @NonNullApi
    package org.gradle.deployment.internal;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 756 bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admission/v1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `kind: {group:"apps", version:"v1", kind:"Deployment"}` (matching the rule the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `kind: {group:"apps", version:"v1", kind:"Deployment"}` (matching the rule the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. pkg/registry/apps/rest/storage_apps.go

    	storage := map[string]rest.Storage{}
    
    	// deployments
    	if resource := "deployments"; apiResourceConfigSource.ResourceEnabled(appsapiv1.SchemeGroupVersion.WithResource(resource)) {
    		deploymentStorage, err := deploymentstore.NewStorage(restOptionsGetter)
    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = deploymentStorage.Deployment
    		storage[resource+"/status"] = deploymentStorage.Status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    				},
    				{
    					Name:       "deployments",
    					Namespaced: true,
    					Kind:       "Deployment",
    					Group:      "apps",
    					Version:    "v1",
    					ShortNames: []string{"deploy"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    				{
    					Name:       "deployments/status",
    					Namespaced: true,
    					Kind:       "Deployment",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top