Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for omitManagedFields (2.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    			if test.want != got.OmitManagedFields {
    				t.Errorf("Expected OmitManagedFields to match, want: %t, got: %t", test.want, got.OmitManagedFields)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// If a value is not specified then the global default specified in
    	// Policy.OmitManagedFields will stand.
    	// +optional
    	OmitManagedFields *bool `json:"omitManagedFields,omitempty" protobuf:"varint,9,opt,name=omitManagedFields"`
    }
    
    // GroupResources represents resource kinds in an API group.
    type GroupResources struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	out.Rules = *(*[]audit.PolicyRule)(unsafe.Pointer(&in.Rules))
    	out.OmitStages = *(*[]audit.Stage)(unsafe.Pointer(&in.OmitStages))
    	out.OmitManagedFields = in.OmitManagedFields
    	return nil
    }
    
    // Convert_v1_Policy_To_audit_Policy is an autogenerated conversion function.
    func Convert_v1_Policy_To_audit_Policy(in *Policy, out *audit.Policy, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // Note that the value, if specified, in this rule will override the global default
      // If a value is not specified then the global default specified in
      // Policy.OmitManagedFields will stand.
      // +optional
      optional bool omitManagedFields = 9;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	//   in the API audit log
    	// Note that the value, if specified, in this rule will override the global default
    	// If a value is not specified then the global default specified in
    	// Policy.OmitManagedFields will stand.
    	// +optional
    	OmitManagedFields *bool
    }
    
    // GroupResources represents resource kinds in an API group.
    type GroupResources struct {
    	// Group is the name of the API group that contains the resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top