Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for fieldmanager_b (0.38 sec)

  1. pilot/pkg/config/kube/crdclient/types.gen.go

    		if err != nil {
    			return nil, err
    		}
    		return c.Istio().SecurityV1beta1().AuthorizationPolicies(orig.Namespace).
    			Patch(context.TODO(), orig.Name, typ, patchBytes, metav1.PatchOptions{FieldManager: "pilot-discovery"})
    	case gvk.DestinationRule:
    		oldRes := &apiistioioapinetworkingv1alpha3.DestinationRule{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*istioioapinetworkingv1alpha3.DestinationRule)),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// fieldManager is a name associated with the actor or entity
    	// that is making these changes. The value must be less than or
    	// 128 characters long, and only contain printable characters,
    	// as defined by https://golang.org/pkg/unicode/#IsPrint.
    	// +optional
    	FieldManager string `json:"fieldManager,omitempty" protobuf:"bytes,3,name=fieldManager"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"force":        "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              }
            },
            {
              "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.",
              "in": "query",
              "name": "fieldManager",
              "schema": {
                "type": "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
      // field is required.
      optional string fieldManager = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool force = 2;
    
      // fieldManager is a name associated with the actor or entity
      // that is making these changes. The value must be less than or
      // 128 characters long, and only contain printable characters,
      // as defined by https://golang.org/pkg/unicode/#IsPrint. This
      // field is required.
      optional string fieldManager = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    			return nil, nil, err
    		}
    
    		// Ignore changes that only affect managed fields timestamps.
    		// FieldManager can't know about changes like normalized fields, defaulted
    		// fields and other mutations.
    		obj, err = fieldmanager.IgnoreManagedFieldsTimestampsTransformer(ctx, obj, existing)
    		if err != nil {
    			return nil, nil, err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	fieldManager, err := managedfields.NewDefaultCRDFieldManager(
    		typeConverter,
    		reqScope.Convertor,
    		reqScope.Defaulter,
    		reqScope.Creater,
    		reqScope.Kind,
    		reqScope.HubGroupVersion,
    		subresource,
    		resetFields,
    	)
    	if err != nil {
    		return handlers.RequestScope{}, err
    	}
    	reqScope.FieldManager = fieldManager
    	return reqScope, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	_, err := ctx.DynamicClient.
    		Resource(a.gvr).
    		Namespace(patch.GetNamespace()).
    		Apply(
    			context.TODO(),
    			patch.GetName(),
    			patch,
    			metav1.ApplyOptions{
    				FieldManager: "manager",
    			})
    
    	return err
    
    }
    
    func (a applyPatchOperation) Description() string {
    	return a.description
    }
    
    // Replaces schema used for v1beta1 of crd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	if resetFieldsStrategy, isResetFieldsStrategy := storage.(rest.ResetFieldsStrategy); isResetFieldsStrategy {
    		resetFields = resetFieldsStrategy.GetResetFields()
    	}
    
    	reqScope.FieldManager, err = managedfields.NewDefaultFieldManager(
    		a.group.TypeConverter,
    		a.group.UnsafeConvertor,
    		a.group.Defaulter,
    		a.group.Creater,
    		fqKindToRegister,
    		reqScope.HubGroupVersion,
    		subresource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top