Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,372 for fieldsV1 (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler_test.go

    					APIVersion: "apps/v1",
    					FieldsType: "FieldsV1",
    					FieldsV1:   &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:another-field":{}}}`)},
    				},
    				{
    					Manager:    "manager-2",
    					Operation:  metav1.ManagedFieldsOperationApply,
    					APIVersion: "apps/v1",
    					FieldsType: "FieldsV1",
    					FieldsV1:   &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:replicas":{}}}`)},
    					Time:       &managedFieldTime,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfields_test.go

    	tests := []string{
    		`null
    `,
    		`- apiVersion: v1
      fieldsType: FieldsV1
      fieldsV1:
        v:3:
          f:alsoPi: {}
        v:3.1415:
          f:pi: {}
        v:false:
          f:notTrue: {}
      manager: foo
      operation: Update
      time: "2001-02-03T04:05:06Z"
    - apiVersion: v1beta1
      fieldsType: FieldsV1
      fieldsV1:
        i:5:
          f:i: {}
      manager: foo
      operation: Update
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/capmanagers_test.go

    		return metav1.ManagedFieldsEntry{
    			Manager:    name,
    			APIVersion: version,
    			Operation:  "Update",
    			FieldsType: "FieldsV1",
    			FieldsV1:   fields,
    			Time:       &metav1.Time{Time: time.Time{}.Add(time.Hour * time.Duration(order))},
    		}
    	}
    
    	testCases := []struct {
    		name     string
    		input    []metav1.ManagedFieldsEntry
    		expected []metav1.ManagedFieldsEntry
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

      creationTimestamp: "2021-08-20T14:35:04Z"
      generateName: kube-dns-76dbc85bd5-
      labels:
        k8s-app: kube-dns
        pod-template-hash: 76dbc85bd5
      managedFields:
      - apiVersion: v1
        fieldsType: FieldsV1
        fieldsV1:
          f:metadata:
            f:annotations:
              .: {}
              f:scheduler.alpha.kubernetes.io/critical-pod: {}
              f:seccomp.security.alpha.kubernetes.io/pod: {}
            f:generateName: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    		FieldsType: "RandomVersion",
    		APIVersion: "v1",
    	}, {
    		Operation:  "RandomOperation",
    		FieldsType: "FieldsV1",
    		APIVersion: "v1",
    	}, {
    		// Operation is missing
    		FieldsType: "FieldsV1",
    		APIVersion: "v1",
    	}, {
    		Operation:  metav1.ManagedFieldsOperationUpdate,
    		FieldsType: "FieldsV1",
    		// Invalid fieldManager
    		Manager:    "field\nmanager",
    		APIVersion: "v1",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

      creationTimestamp: "2021-08-20T14:35:04Z"
      generateName: kube-dns-76dbc85bd5-
      labels:
        k8s-app: kube-dns
        pod-template-hash: 76dbc85bd5
      managedFields:
      - apiVersion: v1
        fieldsType: FieldsV1
        fieldsV1:
          f:metadata:
            f:annotations:
              .: {}
              f:scheduler.alpha.kubernetes.io/critical-pod: {}
              f:seccomp.security.alpha.kubernetes.io/pod: {}
            f:generateName: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "fieldsV1": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go

    func (in *FieldsV1) DeepCopyInto(out *FieldsV1) {
    	*out = *in
    	if in.Raw != nil {
    		in, out := &in.Raw, &out.Raw
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FieldsV1.
    func (in *FieldsV1) DeepCopy() *FieldsV1 {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "fieldsV1": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                "type": "string"
              },
              "fieldsV1": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
Back to top