Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for DeploymentRollback (0.26 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.DeploymentRollback.yaml

    apiVersion: extensions/v1beta1
    kind: DeploymentRollback
    name: nameValue
    rollbackTo:
      revision: 1
    updatedAnnotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 167 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.DeploymentRollback.yaml

    apiVersion: apps/v1beta1
    kind: DeploymentRollback
    name: nameValue
    rollbackTo:
      revision: 1
    updatedAnnotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 161 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.DeploymentRollback.json

    {
      "kind": "DeploymentRollback",
      "apiVersion": "apps/v1beta1",
      "name": "nameValue",
      "updatedAnnotations": {
        "updatedAnnotationsKey": "updatedAnnotationsValue"
      },
      "rollbackTo": {
        "revision": 1
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 216 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.DeploymentRollback.json

    {
      "kind": "DeploymentRollback",
      "apiVersion": "extensions/v1beta1",
      "name": "nameValue",
      "updatedAnnotations": {
        "updatedAnnotationsKey": "updatedAnnotationsValue"
      },
      "rollbackTo": {
        "revision": 1
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 222 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.DeploymentRollback.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 117 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.DeploymentRollback.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 111 bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation.go

    	allErrs = append(allErrs, ValidateDeploymentSpec(&obj.Spec, nil, field.NewPath("spec"), opts)...)
    	return allErrs
    }
    
    // ValidateDeploymentRollback validates a given DeploymentRollback.
    func ValidateDeploymentRollback(obj *apps.DeploymentRollback) field.ErrorList {
    	allErrs := apivalidation.ValidateAnnotations(obj.UpdatedAnnotations, field.NewPath("updatedAnnotations"))
    	if len(obj.Name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // is considered to match if either object matches the selector. A null
      // object (oldObject in the case of create, or newObject in the case of
      // delete) or an object that cannot have labels (like a
      // DeploymentRollback or a PodProxyOptions object) is not considered to
      // match.
      // Use the object selector only if the webhook is opt-in, because end
      // users may skip the admission webhook by setting the labels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. pkg/apis/apps/validation/validation_test.go

    			t.Errorf("%s: expected error: %t, got error: %t\nerrors: %s", test.name, test.expectedErr, hasErr, errString)
    		}
    	}
    }
    
    func validDeploymentRollback() *apps.DeploymentRollback {
    	return &apps.DeploymentRollback{
    		Name: "abc",
    		UpdatedAnnotations: map[string]string{
    			"created-by": "abc",
    		},
    		RollbackTo: apps.RollbackConfig{
    			Revision: 1,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// is considered to match if either object matches the selector. A null
    	// object (oldObject in the case of create, or newObject in the case of
    	// delete) or an object that cannot have labels (like a
    	// DeploymentRollback or a PodProxyOptions object) is not considered to
    	// match.
    	// Use the object selector only if the webhook is opt-in, because end
    	// users may skip the admission webhook by setting the labels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top