Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EnsureAdminClusterRoleBindingImpl (0.31 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    		}
    	}
    
    	if ensureRBACFunc == nil {
    		ensureRBACFunc = EnsureAdminClusterRoleBindingImpl
    	}
    
    	ctx := context.Background()
    	return ensureRBACFunc(
    		ctx, adminClient, superAdminClient,
    		kubeadmconstants.KubernetesAPICallRetryInterval, kubeadmapi.GetActiveTimeouts().KubernetesAPICall.Duration,
    	)
    }
    
    // EnsureAdminClusterRoleBindingImpl first attempts to see if the ClusterRoleBinding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    				fakeSuperAdminClient := clientsetfake.NewSimpleClientset()
    				tc.setupSuperAdminClient(fakeSuperAdminClient)
    				superAdminClient = fakeSuperAdminClient
    			}
    
    			client, err := EnsureAdminClusterRoleBindingImpl(
    				context.Background(), adminClient, superAdminClient, 0, 0)
    			if (err != nil) != tc.expectedError {
    				t.Fatalf("expected error: %v, got %v, error: %v", tc.expectedError, err != nil, err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Fixed cleanup of Pod volume mounts when a file was used as a subpath.
       ([#123052](https://github.com/kubernetes/kubernetes/pull/123052), [@jsafrane](https://github.com/jsafrane))
    - Fixed error handling in `EnsureAdminClusterRoleBindingImpl`.
       ([#122893](https://github.com/kubernetes/kubernetes/pull/122893), [@danwinship](https://github.com/danwinship))
    - Fixed incorrect error logging for `syncCronJob`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top