Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Bootstrapping (0.38 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

    items:
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:attachdetach-controller
      rules:
      - apiGroups:
        - ""
        resources:
        - persistentvolumeclaims
        - persistentvolumes
        verbs:
        - list
        - watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: admin
      rules: null
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: cluster-admin
      rules:
      - apiGroups:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

    items:
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:attachdetach-controller
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:attachdetach-controller
      subjects:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/discovery/token/token.go

    	return secureKubeconfig, nil
    }
    
    // buildInsecureBootstrapKubeConfig makes a kubeconfig object that connects insecurely to the API Server for bootstrapping purposes
    func buildInsecureBootstrapKubeConfig(endpoint, clustername string) *clientcmdapi.Config {
    	controlPlaneEndpoint := fmt.Sprintf("https://%s", endpoint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/runtime/mcache.go

    //
    // Returns nil if we're not bootstrapping or we don't have a P. The caller's
    // P must not change, so we must be in a non-preemptible state.
    func getMCache(mp *m) *mcache {
    	// Grab the mcache, since that's where stats live.
    	pp := mp.p.ptr()
    	var c *mcache
    	if pp == nil {
    		// We will be called without a P while bootstrapping,
    		// in which case we use mcache0, which is set in mallocinit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/bootstrap/bootstrap.go

    // kubeconfigPath on disk is populated based on bootstrapPath but pointing to the location of the client cert
    // in certDir. This preserves the historical behavior of bootstrapping where on subsequent restarts the
    // most recent client cert is used to request new client certs instead of the initial token.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    	Read       = []string{"get", "list", "watch"}
    	ReadUpdate = []string{"get", "list", "watch", "update", "patch"}
    
    	Label      = map[string]string{"kubernetes.io/bootstrapping": "rbac-defaults"}
    	Annotation = map[string]string{rbacv1.AutoUpdateAnnotationKey: "true"}
    )
    
    const (
    	legacyGroup                  = ""
    	appsGroup                    = "apps"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. pkg/bootstrap/platform/gcp.go

    		Fn       func() (string, error)
    	}
    )
    
    type gcpEnv struct {
    	sync.Mutex
    	metadata     map[string]string
    	fillMetadata lazy.Lazy[bool]
    }
    
    // IsGCP returns whether or not the platform for bootstrapping is Google Cloud Platform.
    func IsGCP() bool {
    	if len(GCPStaticMetadata) > 0 {
    		// Assume this is running on GCP if GCP project env variable is set.
    		return true
    	}
    	return metadata.OnGCE()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. src/flag/flag_test.go

    	f.v = s
    	return nil
    }
    
    func (f *zeroPanicker) String() string {
    	if !f.dontPanic {
    		panic("panic!")
    	}
    	return f.v
    }
    
    const defaultOutput = `  -A	for bootstrapping, allow 'any' type
      -Alongflagname
        	disable bounds checking
      -C	a boolean defaulting to true (default true)
      -D path
        	set relative path for local imports
      -E string
        	issue 23543 (default "0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

            // Our test infrastructure loads org.gradle.util.SystemProperties, which depends on $EmptyImmutableCollection from guava 14.
            // The below test is testing that out infrastructure doesn't throw a VerifyError while bootstrapping.
            // This is testing classloader isolation, but this was not the real problem that triggered GRADLE-2962.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top