Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for VisitPodConfigmapNames (0.34 sec)

  1. pkg/api/v1/pod/util_test.go

    		t.Error("Missing expected paths. Verify VisitPodConfigmapNames() is correctly finding the missing paths, then correct expectedPaths")
    	}
    	if extraPaths := collectPaths.Difference(expectedPaths); len(extraPaths) > 0 {
    		t.Logf("Extra paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  2. pkg/kubelet/configmap/configmap_manager.go

    }
    
    func (c *configMapManager) UnregisterPod(pod *v1.Pod) {
    	c.manager.UnregisterPod(pod)
    }
    
    func getConfigMapNames(pod *v1.Pod) sets.Set[string] {
    	result := sets.New[string]()
    	podutil.VisitPodConfigmapNames(pod, func(name string) bool {
    		result.Insert(name)
    		return true
    	})
    	return result
    }
    
    const (
    	defaultTTL = time.Minute
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pkg/api/v1/pod/util.go

    			}
    		}
    	}
    	return true
    }
    
    // VisitPodConfigmapNames invokes the visitor function with the name of every configmap
    // referenced by the pod spec. If visitor returns false, visiting is short-circuited.
    // Transitive references (e.g. pod -> pvc -> pv -> secret) are not visited.
    // Returns true if visiting completed, false if visiting was short-circuited.
    func VisitPodConfigmapNames(pod *v1.Pod, visitor Visitor) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    		t.Error("Missing expected paths. Verify VisitPodConfigmapNames() is correctly finding the missing paths, then correct expectedPaths")
    	}
    	if extraPaths := collectPaths.Difference(expectedPaths); len(extraPaths) > 0 {
    		t.Logf("Extra paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pkg/api/pod/util.go

    			}
    		}
    	}
    	return true
    }
    
    // VisitPodConfigmapNames invokes the visitor function with the name of every configmap
    // referenced by the pod spec. If visitor returns false, visiting is short-circuited.
    // Transitive references (e.g. pod -> pvc -> pv -> secret) are not visited.
    // Returns true if visiting completed, false if visiting was short-circuited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/graph.go

    		e := newDestinationEdge(secretVertex, podVertex, nodeVertex)
    		g.graph.SetEdge(e)
    		g.addEdgeToDestinationIndex_locked(e)
    		return true
    	})
    
    	podutil.VisitPodConfigmapNames(pod, func(configmap string) bool {
    		configmapVertex := g.getOrCreateVertex_locked(configMapVertexType, pod.Namespace, configmap)
    		e := newDestinationEdge(configmapVertex, podVertex, nodeVertex)
    		g.graph.SetEdge(e)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. plugin/pkg/admission/noderestriction/admission.go

    	if hasSecrets {
    		return admission.NewForbidden(a, fmt.Errorf("node %q can not create pods that reference secrets", nodeName))
    	}
    	hasConfigMaps := false
    	podutil.VisitPodConfigmapNames(pod, func(name string) (shouldContinue bool) { hasConfigMaps = true; return false }, podutil.AllContainers)
    	if hasConfigMaps {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top