Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for defaultServiceExportTo (0.21 sec)

  1. operator/pkg/util/merge_iop.go

    	TrustDomainAliases             []string                                                  `json:"trustDomainAliases" patchStrategy:"merge"`
    	DefaultServiceExportTo         []string                                                  `json:"defaultServiceExportTo" patchStrategy:"merge"`
    	DefaultVirtualServiceExportTo  []string                                                  `json:"defaultVirtualServiceExportTo" patchStrategy:"merge"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pkg/config/mesh/mesh_test.go

    serviceSettings: 
      - settings:
          clusterLocal: true
        host:
          - "*.myns.svc.cluster.local"
    ingressClass: foo
    enableTracing: false
    trustDomainAliases: ["default", "both"]
    defaultServiceExportTo: 
    - "foo"
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    clusterLocalNamespaces: 
    - "foons"
    defaultProviders:
      tracing: [foo]
    extensionProviders:
    - name: sd
      stackdriver: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. pkg/config/mesh/mesh.go

    		RootNamespace:                  constants.IstioSystemNamespace,
    		ProxyListenPort:                15001,
    		ProxyInboundListenPort:         15006,
    		ConnectTimeout:                 durationpb.New(10 * time.Second),
    		DefaultServiceExportTo:         []string{"*"},
    		DefaultVirtualServiceExportTo:  []string{"*"},
    		DefaultDestinationRuleExportTo: []string{"*"},
    		// DnsRefreshRate is only used when DNS requests fail (NXDOMAIN or SERVFAIL). For success, the TTL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    		// default to *
    		ps.exportToDefaults.destinationRule.Insert(visibility.Public)
    	}
    
    	ps.exportToDefaults.service = sets.New[visibility.Instance]()
    	if ps.Mesh.DefaultServiceExportTo != nil {
    		for _, e := range ps.Mesh.DefaultServiceExportTo {
    			ps.exportToDefaults.service.Insert(visibility.Instance(e))
    		}
    	} else {
    		ps.exportToDefaults.service.Insert(visibility.Public)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top