Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for ClusterLocalFQDN (0.68 sec)

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

    	NamespacedName() NamespacedName
    
    	// ServiceAccountName returns the service account string for this service.
    	ServiceAccountName() string
    
    	// ClusterLocalFQDN returns the fully qualified domain name for cluster-local host.
    	ClusterLocalFQDN() string
    
    	// ClusterSetLocalFQDN returns the fully qualified domain name for the Kubernetes
    	// Multi-Cluster Services (MCS) Cluster Set host.
    	ClusterSetLocalFQDN() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/test/framework/components/echo/deployment/builder.go

    			return err
    		}
    		if existing, ok := services[cfg.ClusterLocalFQDN()]; ok {
    			// we've already run the generation for another echo instance's config, make sure things are the same
    			if existing != svc {
    				return fmt.Errorf("inconsistency in %s Service definition:\n%s", cfg.Service, cmp.Diff(existing, svc))
    			}
    		}
    		services[cfg.ClusterLocalFQDN()] = svc
    	}
    
    	// Deploy the services to all clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top