Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ClusterLocalFQDN (0.57 sec)

  1. tests/integration/security/testdata/reachability/migration.yaml.tmpl

    metadata:
      name: "{{ .To.ServiceName }}"
    spec:
      hosts:
      - "{{ .To.ClusterLocalFQDN }}"
      http:
      - name: "vistio-route"
        match:
        - uri:
            prefix: "/vistio"
        route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            subset: "vistio"
      - name: "legacy-by-default"
        route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            subset: "vlegacy"
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 975 bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/services.go

    	return len(d)
    }
    
    // Less returns true if the element at i should appear before the element at j in a sorted Services
    func (d Services) Less(i, j int) bool {
    	return strings.Compare(d[i].Config().ClusterLocalFQDN(), d[j].Config().ClusterLocalFQDN()) < 0
    }
    
    // Swap switches the positions of elements at i and j (used for sorting).
    func (d Services) Swap(i, j int) {
    	d[i], d[j] = d[j], d[i]
    }
    
    // Copy this services array.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/authz/mtls.yaml.tmpl

          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)
  4. pkg/test/framework/components/echo/instances.go

    	return i.Config().NamespaceName()
    }
    
    func (i Instances) ServiceAccountName() string {
    	return i.Config().ServiceAccountName()
    }
    
    func (i Instances) ClusterLocalFQDN() string {
    	return i.Config().ClusterLocalFQDN()
    }
    
    func (i Instances) ClusterSetLocalFQDN() string {
    	return i.Config().ClusterSetLocalFQDN()
    }
    
    func (i Instances) NamespacedName() NamespacedName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. tests/integration/security/testdata/reachability/workload-dr.yaml.tmpl

    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
    - 200 bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/conditions.yaml.tmpl

        - key: connection.sni
          values: [ "*.{{ .To.ClusterLocalFQDN }}" ]
      - to:
        - operation:
            paths: [ "/connection-sni-bad" ]
        when:
        - key: connection.sni
          values: [ "never-matched" ]
      - to:
          - operation:
              paths: [ "/connection-sni-notValues" ]
        when:
          - key: connection.sni
            notValues: [ "*.{{ .To.ClusterLocalFQDN }}" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

                  number: 80
              weight: 100
        - match:
            - gateways:
                - test-egress
              port: 80
          route:
            - destination:
                host: "{{ .To.ClusterLocalFQDN }}"
                port:
                  number: {{ (.To.PortForName "http").ServicePort }}
              weight: 100
          headers:
            request:
              add:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/plaintext.yaml.tmpl

    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: {{ .To.ServiceName }}
      namespace: {{ .Denied.NamespaceName }}
    spec:
      host: "{{ .To.ClusterLocalFQDN }}"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/requestauthn/ingress.yaml.tmpl

    metadata:
      name: {{ .To.ServiceName }}
    spec:
      hosts:
      - "*.{{ .To.ServiceName }}.com"
      gateways:
      - {{ .To.ServiceName }}-gateway
      http:
      - route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 30 17:55:53 UTC 2023
    - 676 bytes
    - Viewed (0)
  10. tests/integration/security/testdata/authz/not-host.yaml.tmpl

    spec:
      hosts:
        - "allow.{{ .To.ServiceName }}.com"
        - "deny.{{ .To.ServiceName }}.com"
      gateways:
        - gw-{{ .To.ServiceName }}
      http:
        - route:
            - destination:
                host: "{{ .To.ClusterLocalFQDN }}"
                port:
                  number: {{ (.To.PortForName "http").ServicePort }}
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: allow-{{ .To.ServiceName }}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top