Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,093 for noapiversion (0.28 sec)

  1. pkg/controller/disruption/disruption_test.go

    			findsScale:    true,
    			expectedScale: 10,
    		},
    		"invalid rs apiVersion": {
    			rsApiVersion:  "invalid/v1",
    			rsKind:        controllerKindRS.Kind,
    			depApiVersion: "apps/v1",
    			depKind:       controllerKindDep.Kind,
    			findsScale:    false,
    		},
    		"invalid rs kind": {
    			rsApiVersion:  "apps/v1",
    			rsKind:        "InvalidKind",
    			depApiVersion: "apps/v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

    apiVersion: v1
    items:
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:attachdetach-controller
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:attachdetach-controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    		},
    		{
    			data: []byte(`{"kind":"Foo"}`),
    
    			expectedGVK: &schema.GroupVersionKind{Kind: "Foo"},
    			errFn:       func(err error) bool { return strings.Contains(err.Error(), "Object 'apiVersion' is missing in") },
    			strict:      true,
    		},
    
    		{
    			data: []byte(`{"apiVersion":"foo/v1"}`),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/resource.k8s.io.v1alpha2.ResourceClaimParameters.json

        {
          "driverName": "driverNameValue",
          "vendorParameters": {
            "apiVersion": "example.com/v1",
            "kind": "CustomType",
            "spec": {
              "replicas": 1
            },
            "status": {
              "available": 1
            }
          },
          "requests": [
            {
              "vendorParameters": {
                "apiVersion": "example.com/v1",
                "kind": "CustomType",
                "spec": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaimParameters.yaml

    apiVersion: resource.k8s.io/v1alpha2
    driverRequests:
    - driverName: driverNameValue
      requests:
      - namedResources:
          selector: selectorValue
        vendorParameters:
          apiVersion: example.com/v1
          kind: CustomType
          spec:
            replicas: 1
          status:
            available: 1
      vendorParameters:
        apiVersion: example.com/v1
        kind: CustomType
        spec:
          replicas: 1
        status:
          available: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

    apiVersion: v1
    items:
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:attachdetach-controller
      rules:
      - apiGroups:
        - ""
        resources:
        - persistentvolumeclaims
        - persistentvolumes
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-1.yaml

    # Same service as cluster2, should not report warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service with extra port in cluster2, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: extra-port
      namespace: my-namespace
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Event.json

            "operation": "operationValue",
            "apiVersion": "apiVersionValue",
            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "involvedObject": {
        "kind": "kindValue",
        "namespace": "namespaceValue",
        "name": "nameValue",
        "uid": "uidValue",
        "apiVersion": "apiVersionValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

    ##################################################################################################
    apiVersion: v1
    kind: Service
    metadata:
      name: details
      labels:
        app: details
        service: details
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies: [IPv6, IPv4]
      ports:
      - port: 9080
        name: http
      selector:
        app: details
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-details
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaim.yaml

    apiVersion: resource.k8s.io/v1alpha2
    kind: ResourceClaim
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top