Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ClusterLocalFQDN (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/test/framework/components/echo/match/matchers_test.go

    	return f.Config().NamespaceName()
    }
    
    func (f fakeInstance) ServiceAccountName() string {
    	return f.Config().ServiceAccountName()
    }
    
    func (f fakeInstance) ClusterLocalFQDN() string {
    	return f.Config().ClusterLocalFQDN()
    }
    
    func (f fakeInstance) ClusterSetLocalFQDN() string {
    	return f.Config().ClusterSetLocalFQDN()
    }
    
    func (f fakeInstance) Address() string {
    	panic("implement me")
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/deployment/flags.go

    type configs []echo.Config
    
    var _ config.Value = &configs{}
    
    func (c *configs) String() string {
    	buf := &bytes.Buffer{}
    	for _, cc := range *c {
    		_, _ = fmt.Fprintf(buf, "FQDN:     %s\n", cc.ClusterLocalFQDN())
    		_, _ = fmt.Fprintf(buf, "Headless: %v\n", cc.Headless)
    		_, _ = fmt.Fprintf(buf, "VM:       %v\n", cc.DeployAsVM)
    		if cc.DeployAsVM {
    			_, _ = fmt.Fprintf(buf, "VMDistro: %s\n", cc.VMDistro)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/authz/ingress-gateway.yaml.tmpl

      namespace: {{ .To.NamespaceName }}
    spec:
      hosts:
      - "*.{{ .To.ServiceName }}.com"
      gateways:
      - gw-{{ .To.ServiceName }}
      http:
      - route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/multicluster_test.go

    					func(t framework.TestContext) {
    						i.PatchMeshConfigOrFail(t, t, fmt.Sprintf(`
    serviceSettings: 
    - settings:
        clusterLocal: true
      hosts:
      - "%s"
    `, apps.B.Config().ClusterLocalFQDN()))
    					},
    				},
    				{
    					"subsets",
    					func(t framework.TestContext) {
    						cfg := tmpl.EvaluateOrFail(t, `
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top