Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for updatedAnnotations (0.81 sec)

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

    message DeploymentRollback {
      // Required: This must match the Name of a deployment.
      optional string name = 1;
    
      // The annotations to be updated to a deployment
      // +optional
      map<string, string> updatedAnnotations = 2;
    
      // The config of this deployment rollback.
      optional RollbackConfig rollbackTo = 3;
    }
    
    // DeploymentSpec is the specification of the desired behavior of the Deployment.
    message DeploymentSpec {
    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. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

    message DeploymentRollback {
      // Required: This must match the Name of a deployment.
      optional string name = 1;
    
      // The annotations to be updated to a deployment
      // +optional
      map<string, string> updatedAnnotations = 2;
    
      // The config of this deployment rollback.
      optional RollbackConfig rollbackTo = 3;
    }
    
    // DeploymentSpec is the specification of the desired behavior of the Deployment.
    message DeploymentSpec {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "rollbackTo": {
              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.RollbackConfig",
              "description": "The config of this deployment rollback."
            },
            "updatedAnnotations": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "The annotations to be updated to a deployment",
              "type": "object"
            }
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/util/cdi/cdi.go

    	annotationPrefix = "cdi.k8s.io/"
    )
    
    // GenerateAnnotations generate container annotations using CDI UpdateAnnotations API.
    func GenerateAnnotations(
    	claimUID types.UID,
    	driverName string,
    	cdiDevices []string,
    ) ([]kubecontainer.Annotation, error) {
    	if len(cdiDevices) == 0 {
    		return nil, nil
    	}
    	annotations, err := updateAnnotations(map[string]string{}, driverName, string(claimUID), cdiDevices)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. pkg/kubelet/config/config.go

    	pod.Annotations[kubetypes.ConfigFirstSeenAnnotationKey] = kubetypes.NewTimestamp().GetString()
    }
    
    // updateAnnotations returns an Annotation map containing the api annotation map plus
    // locally managed annotations
    func updateAnnotations(existing, ref *v1.Pod) {
    	annotations := make(map[string]string, len(ref.Annotations)+len(localAnnotations))
    	for k, v := range ref.Annotations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "Required: This must match the Name of a deployment.",
    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"updatedAnnotations": {
    						SchemaProps: spec.SchemaProps{
    							Description: "The annotations to be updated to a deployment",
    							Type:        []string{"object"},
    							AdditionalProperties: &spec.SchemaOrBool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top