Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for DeploymentStatus (0.33 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // the max value of int32 (i.e. 2147483647) by default, which means "no deadline".
      // +optional
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
      // The generation observed by the deployment controller.
      // +optional
      optional int64 observedGeneration = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    }
    
    func (DeploymentSpec) SwaggerDoc() map[string]string {
    	return map_DeploymentSpec
    }
    
    var map_DeploymentStatus = map[string]string{
    	"":                    "DeploymentStatus is the most recently observed status of the Deployment.",
    	"observedGeneration":  "The generation observed by the deployment controller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // the max value of int32 (i.e. 2147483647) by default, which means "no deadline".
      // +optional
      optional int32 progressDeadlineSeconds = 9;
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    message DeploymentStatus {
      // The generation observed by the deployment controller.
      // +optional
      optional int64 observedGeneration = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    }
    
    func (DeploymentSpec) SwaggerDoc() map[string]string {
    	return map_DeploymentSpec
    }
    
    var map_DeploymentStatus = map[string]string{
    	"":                    "DeploymentStatus is the most recently observed status of the Deployment.",
    	"observedGeneration":  "The generation observed by the deployment controller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    }
    
    func (DeploymentSpec) SwaggerDoc() map[string]string {
    	return map_DeploymentSpec
    }
    
    var map_DeploymentStatus = map[string]string{
    	"":                    "DeploymentStatus is the most recently observed status of the Deployment.",
    	"observedGeneration":  "The generation observed by the deployment controller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation.go

    		}
    	}
    	return allErrs
    }
    
    // ValidateDeploymentStatus validates given deployment status.
    func ValidateDeploymentStatus(status *apps.DeploymentStatus, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(status.ObservedGeneration, fldPath.Child("observedGeneration"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top