Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isIncludeOrExcludeEntriesMatched (0.25 sec)

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

    		if len(eld.Namespaces) > 0 {
    			if isIncludeOrExcludeEntriesMatched(eld.Namespaces, pod.Namespace) {
    				return true
    			}
    		}
    		if len(eld.Pods) > 0 {
    			if isIncludeOrExcludeEntriesMatched(eld.Pods, pod.Name) {
    				return true
    			}
    		}
    		if len(eld.Containers) > 0 {
    			for _, c := range pod.Spec.Containers {
    				if isIncludeOrExcludeEntriesMatched(eld.Containers, c.Name) {
    					return true
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top