Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsProxyContainer (0.27 sec)

  1. tools/bug-report/pkg/common/common.go

    	for _, kv := range versionMap[getVersionKey(clusterVersion)].discoveryLabels {
    		if labels[kv.k] != kv.v {
    			return false
    		}
    	}
    	return true
    }
    
    // IsProxyContainer reports whether container is an istio proxy container.
    func IsProxyContainer(_, container string) bool {
    	return container == ProxyContainerName
    }
    
    // IsOperatorContainer reports whether the container is an istio-operator container.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/bugreport/bugreport.go

    			log.Error(err.Error())
    			continue
    		}
    
    		cp := params.SetNamespace(namespace).SetPod(pod).SetContainer(container)
    		proxyDir := archive.ProxyOutputPath(tempDir, namespace, pod)
    		switch {
    		case common.IsProxyContainer(params.ClusterVersion, container):
    			if !ambient.IsZtunnelPod(client, pod, namespace) {
    				getFromCluster(content.GetCoredumps, cp, filepath.Join(proxyDir, "cores"), &mandatoryWg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top