Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,683 for noapiversion (0.22 sec)

  1. tests/fuzz/testdata/inject/fuzz_into_resource_file.dict

    "injectedAnnotations"
    "kind: CronJob"
    "kind: DaemonSet"
    "kind: Deployment"
    "kind: DeploymentConfig"
    "kind: IstioOperator"
    "kind: List"
    "kind: Service"
    "apiVersion: apps/v1"
    "apiVersion: apps.openshift.io/v1"
    "apiVersion: batch/v2alpha1"
    "apiVersion: install.istio.io/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 09 17:12:53 UTC 2021
    - 377 bytes
    - Viewed (0)
  2. operator/pkg/compare/compare_test.go

        release: istio`,
    			want: `apiVersion: autoscaling/v2beta1 -> autoscaling/v2
    `,
    		},
    		{
    			desc: "nested item changed",
    			a: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: istio-ingressgateway
      namespace: istio-system
      labels:
        app: istio-ingressgateway
        release: istio`,
    			b: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  3. 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)
  4. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: testing-gateway-01-test-01
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - testing-01.com
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/meta_test.go

    		},
    		{
    			name: "YAMLSuccessfullyInterpretMultiDoc",
    			input: `---
    apiVersion: v1
    kind: Service
    ---
    apiVersion: v2
    kind: Deployment`,
    			expected: &schema.GroupVersionKind{Version: "v1", Kind: "Service"},
    		},
    		{
    			name:     "YAMLSuccessfullyInterpretOnlyG",
    			input:    `apiVersion: core/`,
    			expected: &schema.GroupVersionKind{Group: "core"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 27 09:44:59 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should generate a warning: two services using that deployment
    # using the same port but different protocol.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiple-svc-multiple-prot
      namespace: bookinfo
      labels:
        app: details
        version: v1
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix_beta.yaml

    apiVersion: networking.istio.io/v1beta1
    kind: Gateway
    metadata:
      name: testing-gateway
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
        - hosts:
            - './testing-01.com'
          port:
            name: http
            number: 80
            protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/injection-with-mismatched-sidecar.yaml

    # Namespace 'enabled-namespace' has istio injection enabled, so will be enforced.
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace
    ---
    # Details-v1-pod-old is out of date and should get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-old
      namespace: enabled-namespace
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 05:31:06 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo-versions.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: reviews-v1
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: reviews
        version: v1
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: reviews-v2
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: reviews
        version: v2
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: reviews-v3
    spec:
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 11 16:27:45 UTC 2022
    - 920 bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/namespace-roles.yaml

    apiVersion: v1
    items:
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: Role
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:bootstrap-signer
        namespace: kube-public
      rules:
      - apiGroups:
        - ""
        resources:
        - configmaps
        verbs:
        - get
        - list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 16 01:37:43 UTC 2019
    - 3.5K bytes
    - Viewed (0)
Back to top