Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkTracing (0.07 sec)

  1. istioctl/pkg/precheck/precheck_test.go

    		// minor <= 20 and checkExternalNameAlias failing
    		// minor <= 20 and checkVirtualServiceHostMatching failing
    		// minor <= 21 and checkPassthroughTargetPorts failing
    		// minor <= 21 and checkTracing failing
    	}
    
    	for _, c := range cases {
    		t.Run(fmt.Sprintf("revision=%s, version=%s", c.revision, c.version), func(t *testing.T) {
    			ctx := cli.NewFakeContext(&cli.NewFakeContextOption{
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jul 09 12:01:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    		}
    	}
    	if minor <= 21 {
    		if err := checkPassthroughTargetPorts(cli, &messages); err != nil {
    			return nil, err
    		}
    		if err := checkTracing(cli, &messages); err != nil {
    			return nil, err
    		}
    	}
    	return messages, nil
    }
    
    func checkTracing(cli kube.CLIClient, messages *diag.Messages) error {
    	// In 1.22, we remove the default tracing config which points to zipkin.istio-system
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 02:31:32 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top