Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newDestinationEdge (0.15 sec)

  1. plugin/pkg/auth/authorizer/node/graph.go

    		e := newDestinationEdge(serviceAccountVertex, podVertex, nodeVertex)
    		g.graph.SetEdge(e)
    		g.addEdgeToDestinationIndex_locked(e)
    	}
    
    	podutil.VisitPodSecretNames(pod, func(secret string) bool {
    		secretVertex := g.getOrCreateVertex_locked(secretVertexType, pod.Namespace, secret)
    		e := newDestinationEdge(secretVertex, 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)
  2. plugin/pkg/auth/authorizer/node/graph_test.go

    				configmapVertex := g.getOrCreateVertex_locked(configMapVertexType, "namespace1", "configmap1")
    				g.graph.SetEdge(newDestinationEdge(configmapVertex, nodeVertex1, nodeVertex1))
    				g.graph.SetEdge(newDestinationEdge(configmapVertex, nodeVertex2, nodeVertex2))
    				return g
    			}(),
    			expect: func() *Graph {
    				g := NewGraph()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
Back to top