Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkClusterRoleBindingsReferenceRoles (0.21 sec)

  1. operator/cmd/mesh/test-util_test.go

    		ou := o.Unstructured()
    		rrname := mustGetValueAtPath(g, ou, "roleRef.name")
    		mustGetRole(g, objs, rrname.(string))
    	}
    }
    
    // checkClusterRoleBindingsReferenceRoles fails if any RoleBinding in objs references a Role that isn't found in objs.
    func checkClusterRoleBindingsReferenceRoles(g *WithT, objs *ObjectSet) {
    	for _, o := range objs.kind(name2.ClusterRoleBindingStr).objSlice {
    		ou := o.Unstructured()
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

    		g.Expect(ep).Should(HavePathValueContain(PathValue{"subsets.[0].ports.[0]", portVal("tcp-istiod", 15012, -1)}))
    
    		checkClusterRoleBindingsReferenceRoles(g, objs)
    	}
    }
    
    func TestPrune(t *testing.T) {
    	recreateSimpleTestEnv()
    	tmpDir := t.TempDir()
    	tmpCharts := chartSourceType(filepath.Join(tmpDir, operatorSubdirFilePath))
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 43.5K bytes
    - Viewed (0)
Back to top