Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,683 for noapiversion (0.23 sec)

  1. 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)
  2. pkg/apis/core/validation/events_test.go

    				},
    				InvolvedObject: core.ObjectReference{
    					APIVersion: "v1",
    					Kind:       "Node",
    				},
    			},
    			true,
    		}, {
    			&core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test4",
    					Namespace: metav1.NamespaceDefault,
    				},
    				InvolvedObject: core.ObjectReference{
    					APIVersion: "v1",
    					Kind:       "Namespace",
    				},
    			},
    			true,
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: productpage
      name: productpage
      namespace: default
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: productpage
      name: productpage-other
      namespace: other
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: reviews
      name: reviews
      namespace: default
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. tests/testdata/networking/sidecar-ns-scope/configs.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: default-sidecar-scope
      namespace: istio-config
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    # Authentication policy to enable mutual TLS for all services (that have sidecar) in the mesh.
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: istio-config
    spec:
      mtls:
        mode: STRICT
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/config/analysis/analyzers/testdata/authorizationpolicies.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: httpbin
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: httpbin
      namespace: httpbin
      labels:
        app: httpbin
    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 80
      selector:
        app: httpbin
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: httpbin
      namespace: httpbin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 08 14:14:46 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/validation.go

    			} else if len(apiVersion) == 0 {
    				allErrs = append(allErrs, field.Invalid(pth.Child("apiVersion"), apiVersion, "must not be empty"))
    			} else if _, err := schema.ParseGroupVersion(apiVersion); err != nil {
    				allErrs = append(allErrs, field.Invalid(pth.Child("apiVersion"), apiVersion, err.Error()))
    			}
    		case "kind":
    			if kind, ok := v.(string); !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 17:46:57 UTC 2019
    - 4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts_with_exportto.yaml

    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - '*.productpage' # should generate an error as this conflicts with VirtualService bar/productpage
      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: productpage
      namespace: bar
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top