Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for commonEncodingVersion (0.66 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec: {}
    status:
      commonEncodingVersion: commonEncodingVersionValue
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json

            "decodableVersions": [
              "decodableVersionsValue"
            ],
            "servedVersions": [
              "servedVersionsValue"
            ]
          }
        ],
        "commonEncodingVersion": "commonEncodingVersionValue",
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "observedGeneration": 3,
            "lastTransitionTime": "2004-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	commonEncodingVersion := "<unset>"
    	if obj.Status.CommonEncodingVersion != nil {
    		commonEncodingVersion = *obj.Status.CommonEncodingVersion
    	}
    	row.Cells = append(row.Cells, obj.Name, commonEncodingVersion, formatStorageVersions(obj.Status.StorageVersions), translateTimestampSince(obj.CreationTimestamp))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    						{
    							APIServerID:       "2",
    							EncodingVersion:   "v1",
    							DecodableVersions: []string{"v1", "v2"},
    						},
    					},
    					CommonEncodingVersion: &commonEncodingVersion,
    				},
    			},
    			// Columns: Name, CommonEncodingVersion, StorageVersions, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"valid", "v1", "1=v1,2=v1", "0s"}}},
    		},
    		{
    			sv: apiserverinternal.StorageVersion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/apiserverinternal/v1alpha1.ServerStorageVersion"),
    									},
    								},
    							},
    						},
    					},
    					"commonEncodingVersion": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

          "description": "API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend.",
          "properties": {
            "commonEncodingVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top