Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for Bootstrapping (0.29 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-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: cluster-admin
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: cluster-admin
      subjects:
      - apiGroup: rbac.authorization.k8s.io
        kind: Group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 11 19:01:47 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  3. 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)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/namespace-roles.yaml

    apiVersion: v1
    items:
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: Role
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:bootstrap-signer
        namespace: kube-public
      rules:
      - apiGroups:
        - ""
        resources:
        - configmaps
        verbs:
        - get
        - list
        - watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 16 01:37:43 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  5. 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)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/namespace-role-bindings.yaml

    items:
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: RoleBinding
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:bootstrap-signer
        namespace: kube-public
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: Role
        name: system:controller:bootstrap-signer
      subjects:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 08 16:15:52 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  7. pkg/bootstrap/platform/platform.go

    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    )
    
    const (
    	KubernetesServiceHost = "KUBERNETES_SERVICE_HOST"
    )
    
    // Environment provides information for the platform on which the bootstrapping
    // is taking place.
    type Environment interface {
    	// Metadata returns a collection of environmental metadata, structured
    	// as a map for metadata names to values. An example for GCP would be a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 07 20:19:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/configuration/configuration_manager.go

    	// comes first.
    	bootstrapped bool
    	// configuration() retries bootstrapRetries times if poller is not bootstrapped
    	// read-only
    	bootstrapRetries int
    	// Grace period for bootstrapping
    	// read-only
    	bootstrapGracePeriod time.Duration
    	once                 sync.Once
    	// if the configuration is regarded as ready.
    	ready               bool
    	mergedConfiguration runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 02:02:38 UTC 2017
    - 4.3K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy_test.go

    	for i := range roles {
    		role := roles[i]
    		accessor, err := meta.Accessor(&role)
    		if err != nil {
    			t.Fatalf("unexpected error: %v", err)
    		}
    		if got, want := accessor.GetLabels(), map[string]string{"kubernetes.io/bootstrapping": "rbac-defaults"}; !reflect.DeepEqual(got, want) {
    			t.Errorf("ClusterRole: %s GetLabels() = %s, want %s", accessor.GetName(), got, want)
    		}
    	}
    
    	rolebindings := ControllerRoleBindings()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 05:24:17 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/dist/README

    This program, dist, is the bootstrapping tool for the Go distribution.
    
    As of Go 1.5, dist and other parts of the compiler toolchain are written
    in Go, making bootstrapping a little more involved than in the past.
    The approach is to build the current release of Go with an earlier one.
    
    The process to install Go 1.x, for x ≥ 22, is:
    
    1. Build cmd/dist with Go 1.20.6.
    2. Using dist, build Go 1.x compiler toolchain with Go 1.20.6.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top