Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ConfigSources (0.53 sec)

  1. operator/pkg/util/merge_iop.go

    	DefaultConfig                  *proxyConfig                                              `json:"defaultConfig" patchStrategy:"merge"`
    	ConfigSources                  []*v1alpha13.ConfigSource                                 `json:"configSources" patchStrategy:"merge" patchMergeKey:"address"`
    	TrustDomainAliases             []string                                                  `json:"trustDomainAliases" 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. pilot/pkg/bootstrap/configcontroller.go

    	return nil
    }
    
    // initConfigSources will process mesh config 'configSources' and initialize
    // associated configs.
    func (s *Server) initConfigSources(args *PilotArgs) (err error) {
    	for _, configSource := range s.environment.Mesh().ConfigSources {
    		srcAddress, err := url.Parse(configSource.Address)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    			if err != nil {
    				return fmt.Errorf("failed reading mesh config: %v", err)
    			}
    			if len(meshConfig.ConfigSources) == 0 && args.RegistryOptions.KubeConfig != "" {
    				hasK8SConfigStore = true
    			}
    			for _, cs := range meshConfig.ConfigSources {
    				if cs.Address == string(Kubernetes)+"://" {
    					hasK8SConfigStore = true
    					break
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top