Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddSourceForCluster (0.18 sec)

  1. pkg/config/analysis/analyzers/multicluster_analyzers_test.go

    		data, err := os.ReadFile(yamlFile)
    		if err != nil {
    			return err
    		}
    		err = src.ApplyContent(fmt.Sprintf("%d", i), string(data))
    		if err != nil {
    			return err
    		}
    	}
    	sa.AddSourceForCluster(src, cluster.ID(clusterName))
    	sa.AddRunningKubeSourceWithRevision(client, clusterName, false)
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/local/istiod_analyze.go

    	}
    
    	sa.meshNetworks = mn
    	return nil
    }
    
    // AddSourceForCluster adds a source based on user supplied configstore to the current IstiodAnalyzer with cluster specified.
    // It functions like the same as AddSource, but it adds the source to the specified cluster.
    func (sa *IstiodAnalyzer) AddSourceForCluster(src model.ConfigStoreController, clusterName cluster.ID) {
    	sa.multiClusterStores[clusterName] = src
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top