Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 355 for ServiceName (0.17 sec)

  1. tests/integration/security/testdata/authz/mtls.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: "{{ .To.ServiceName }}"
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      host: "{{ .To.ClusterLocalFQDN }}"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 398 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/requestauthn/gateway-jwt.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: authz-gateway-{{ .To.ServiceName }}
    spec:
      targetRef:
        name: {{ .To.ServiceName }}-gateway
        kind: Gateway
        group: gateway.networking.k8s.io
      rules:
      - to:
        - operation:
            hosts:
    {{- range $svc := .Services }}
            - "example.{{ $svc.ServiceName }}.com"
    {{- end }}
        from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. pkg/controlplane/reconcilers/instancecount_test.go

    	reconcileTests := []struct {
    		testName          string
    		serviceName       string
    		ip                string
    		endpointPorts     []corev1.EndpointPort
    		additionalMasters int
    		initialState      []runtime.Object
    		expectUpdate      []runtime.Object
    		expectCreate      []runtime.Object
    	}{
    		{
    			testName:      "no existing endpoints",
    			serviceName:   "foo",
    			ip:            "1.2.3.4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  4. tests/integration/security/policy_attachment_only/testdata/authz/gateway-authz.yaml.tmpl

    metadata:
      name: authz-gateway-{{ .To.ServiceName }}
    spec:
      targetRef:
        name: {{ .To.ServiceName }}-gateway
        kind: Gateway
        group: gateway.networking.k8s.io
      action: ALLOW
      rules:
      - to:
        - operation:
            hosts:
    {{- range $svc := .Services }}
            - "example.{{ $svc.ServiceName }}.com"
    {{- end }}
        from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 847 bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/lease_test.go

    	reconcileTests := []struct {
    		testName      string
    		serviceName   string
    		ip            string
    		endpointPorts []corev1.EndpointPort
    		endpointKeys  []string
    		initialState  []runtime.Object
    		expectUpdate  []runtime.Object
    		expectCreate  []runtime.Object
    		expectLeases  []string
    	}{
    		{
    			testName:      "no existing endpoints",
    			serviceName:   "foo",
    			ip:            "1.2.3.4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/not-host.yaml.tmpl

    kind: Gateway
    metadata:
      name: gw-{{ .To.ServiceName }}
    spec:
      selector:
        istio: {{.GatewayIstioLabel | default "ingressgateway"}}
      servers:
        - port:
            number: 80
            name: http
            protocol: HTTP
          hosts:
            - "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: vw-{{ .To.ServiceName }}
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/requestauthn/ingress.yaml.tmpl

    kind: Gateway
    metadata:
      name: {{ .To.ServiceName }}-gateway
    spec:
      selector:
        istio: {{.GatewayIstioLabel | default "ingressgateway"}}
      servers:
        - port:
            number: 80
            name: http
            protocol: HTTP
          hosts:
            - "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 30 17:55:53 UTC 2023
    - 676 bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/conditions.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}-request-headers
    spec:
      selector:
        matchLabels:
          app: "{{ .To.ServiceName }}"
      rules:
      - to:
        - operation:
            paths: [ "/request-headers" ]
        when:
        - key: request.headers[x-foo]
          values: [ "foo" ]
      - to:
          - operation:
              paths: [ "/request-headers-notValues" ]
        when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/authz/path-precedence.yaml.tmpl

    # The following policy denies access to path /allow/admin.
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}-deny
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: DENY
      rules:
        - to:
            - operation:
                paths: ["/allow/admin"]
    ---
    # The following policy allows access to path with prefix /allow.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 689 bytes
    - Viewed (0)
  10. tests/integration/security/testdata/requestauthn/gateway-api.yaml.tmpl

    kind: Gateway
    metadata:
      name: {{ .To.ServiceName }}-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        port: 80
        protocol: HTTP
        hostname: "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      parentRefs:
      - name: {{ .To.ServiceName }}-gateway
      hostnames:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 574 bytes
    - Viewed (0)
Back to top