Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NewIstiodAnalyzer (0.22 sec)

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

    		})
    	}
    }
    
    func setupMultiClusterEnvironmentForCase(tc mcTestCase, cr local.CollectionReporterFn) (*local.IstiodAnalyzer, error) {
    	sa := local.NewIstiodAnalyzer(AllMultiClusterCombined(), "", "istio-system", cr)
    
    	// Add the test files to the fake client
    	if err := addStore(sa, "cluster1", tc.cluster1InputFiles); err != nil {
    		return nil, err
    	}
    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/incluster/controller.go

    ) (*Controller, error) {
    	analyzer := analyzers.AllCombined()
    	all := kuberesource.ConvertInputsToSchemas(analyzer.Metadata().Inputs)
    
    	ia := local.NewIstiodAnalyzer(analyzer, "", resource.Namespace(namespace), func(name config.GroupVersionKind) {})
    	ia.AddSource(rwConfigStore)
    
    	// Filter out configs watched by rwConfigStore so we don't watch multiple times
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/config/analysis/local/istiod_analyze.go

    	return NewIstiodAnalyzer(analyzer, namespace, istioNamespace, cr)
    }
    
    // NewIstiodAnalyzer creates a new IstiodAnalyzer with no sources. Use the Add*Source
    // methods to add sources in ascending precedence order,
    // then execute Analyze to perform the analysis
    func NewIstiodAnalyzer(analyzer analysis.CombinedAnalyzer, namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. istioctl/pkg/analyze/analyze.go

    			if allNamespaces {
    				selectedNamespace = ""
    			} else if selectedNamespace == "" {
    				selectedNamespace = metav1.NamespaceDefault
    			}
    
    			sa := local.NewIstiodAnalyzer(analyzers.AllCombined(),
    				resource.Namespace(selectedNamespace),
    				resource.Namespace(ctx.IstioNamespace()), nil)
    
    			// Check for suppressions and add them to our SourceAnalyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top