Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ConfigSources (0.33 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. pkg/config/mesh/watcher.go

    	current := w.MeshConfig.Load()
    	if !reflect.DeepEqual(meshConfig, current) {
    		log.Infof("mesh configuration updated to: %s", PrettyFormatOfMeshConfig(meshConfig))
    		if !reflect.DeepEqual(meshConfig.ConfigSources, current.ConfigSources) {
    			log.Info("mesh configuration sources have changed")
    			// TODO Need to recreate or reload initConfigController()
    		}
    
    		w.MeshConfig.Store(meshConfig)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. 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)
  4. 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