Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,196 for noapiversion (0.27 sec)

  1. cmd/kubeadm/app/util/marshal_test.go

    var files = map[string][]byte{
    	"foo": []byte(`
    kind: Foo
    apiVersion: foo.k8s.io/v1
    fooField: foo
    `),
    	"bar": []byte(`
    apiVersion: bar.k8s.io/v2
    barField: bar
    kind: Bar
    `),
    	"baz": []byte(`
    apiVersion: baz.k8s.io/v1
    kind: Baz
    baz:
    	foo: bar
    `),
    	"nokind": []byte(`
    apiVersion: baz.k8s.io/v1
    foo: foo
    bar: bar
    `),
    	"noapiversion": []byte(`
    kind: Bar
    foo: foo
    bar: bar
    `),
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. 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)
  3. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      namespace: ns2
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: ns1
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: ns2
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: random-pod
      namespace: ns1
      labels:
        app: foo
    spec:
      containers:
      - image: proxyv2
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults_test.go

    		want *KMSConfiguration
    	}{
    		{
    			desc: "apiVersion not supplied",
    			in:   &KMSConfiguration{},
    			want: &KMSConfiguration{Timeout: defaultTimeout, CacheSize: &defaultCacheSize, APIVersion: defaultAPIVersion},
    		},
    		{
    			desc: "apiVersion supplied",
    			in:   &KMSConfiguration{Timeout: &v1.Duration{Duration: 1 * time.Minute}, APIVersion: "v1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/invalid.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      name: istio
    spec:
      controllerName: istio.io/gateway-controller
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/injection-image-distroless-no-meshconfig.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: ns-override
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: workload-override
    ---
    # ProxyConfig for root namespace
    apiVersion: networking.istio.io/v1beta1
    kind: ProxyConfig
    metadata:
      name: valid-example-pc
      namespace: istio-system
    ---
    # ProxyConfig for ns-override namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiResolveIntegrationTest.groovy

                        }
                    }
                }
    
                dependencies {
                    implementation 'org.gradle:gradle-tooling-api:${tapiVersion}'
                    customConf 'org.gradle:gradle-tooling-api:${tapiVersion}'
                }
    
                tasks.register('resolve') {
                    def configuration = configurations.${configuration}
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/load/load_test.go

    		},
    		{
    			name:      "missing kind",
    			data:      []byte(`{"apiVersion":"apiserver.config.k8s.io/v1alpha1"}`),
    			expectErr: `'Kind' is missing`,
    		},
    		{
    			name:      "unknown group",
    			data:      []byte(`{"apiVersion":"apps/v1alpha1","kind":"AuthorizationConfiguration"}`),
    			expectErr: `apps/v1alpha1`,
    		},
    		{
    			name:      "unknown version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 07:00:31 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      name: istio
    spec:
      controllerName: istio.io/gateway-controller
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.example.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top