Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/invalid-configs/kms/invalid-apiversion.yaml

    kind: EncryptionConfiguration
    apiVersion: apiserver.config.k8s.io/v1
    resources:
      - resources:
          - secrets
        providers:
          - kms:
              apiVersion: v3
              name: foo
              endpoint: unix:///tmp/testprovider.sock
              timeout:   15s
          - kms:
              name: bar
              endpoint: unix:///tmp/testprovider.sock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 03 19:04:47 UTC 2022
    - 367 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/testdata/pod.json

    {
        "apiVersion": "v1",
        "kind": "Pod",
        "metadata": {
            "creationTimestamp": "2021-02-18T09:46:18Z",
            "generateName": "nginx-deployment-7b88ccfd76-",
            "labels": {
                "app": "nginx",
                "pod-template-hash": "7b88ccfd76"
            },
            "managedFields": [
                {
                    "apiVersion": "v1",
                    "fieldsType": "FieldsV1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  3. pkg/auth/authorizer/abac/example_policy_file.jsonl

    {"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"group":"system:authenticated",  "nonResourcePath": "*", "readonly": true}}
    {"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"group":"system:unauthenticated", "nonResourcePath": "*", "readonly": true}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 12:24:57 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/injection.yaml

    ---
    # Namespace doesn't have the label at all
    apiVersion: v1
    kind: Namespace
    metadata:
      name: bar
    ---
    # Namespace is explicitly enabled in the new style
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio.io/rev: canary
      name: canary-test
    ---
    # Namespace is explicitly enabled in the new style, but refers to a non-existent control plane
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/deeply-nested.yaml

    apiVersion: v1
    kind: List
    items:
    - apiVersion: v1
      kind: Pod
    - apiVersion: v1
      kind: Pod
    - apiVersion: v1
      kind: List
      items:
      - apiVersion: v1
        kind: Pod
      - apiVersion: v1
        kind: Pod
      - apiVersion: v1
        kind: List
        items:
        - apiVersion: v1
          kind: Pod
        - apiVersion: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 314 bytes
    - Viewed (0)
  6. 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)
  7. pkg/config/analysis/analyzers/testdata/gateway-duplicate-certificate.yaml

    ---
    apiVersion: v1
    data:
      cert: aHVzaCBodXNoIGh1c2gK
      key: c2VjcmV0IHNlY3JldAo=
    kind: Secret
    metadata:
      name: 01-test-05-wildcard-cert
      namespace: istio-system
    type: Opaque
    ---
    apiVersion: v1
    data:
      cert: aHVzaCBodXNoIGh1c2gK
      key: c2VjcmV0IHNlY3JldAo=
    kind: Secret
    metadata:
      name: 02-test-05-wildcard-cert
      namespace: istio-system
    type: Opaque
    ---
    apiVersion: v1
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: reviews
      namespace: default
    spec:
      ports:
      - port: 42
        name: tcp-test
        protocol: TCP
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: reviews-2port
      namespace: default
    spec:
      ports:
      - port: 80
        name: http-test
        protocol: HTTP
      - port: 443
        name: https-test
        protocol: HTTPS
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top