Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for Bootstrapping (0.25 sec)

  1. cluster/addons/dns/coredns/coredns.yaml.in

      labels:
          kubernetes.io/cluster-service: "true"
          addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        kubernetes.io/bootstrapping: rbac-defaults
        addonmanager.kubernetes.io/mode: Reconcile
      name: system:coredns
    rules:
    - apiGroups:
      - ""
      resources:
      - endpoints
      - services
      - pods
      - namespaces
      verbs:
      - list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. cluster/addons/dns/coredns/coredns.yaml.base

      labels:
          kubernetes.io/cluster-service: "true"
          addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        kubernetes.io/bootstrapping: rbac-defaults
        addonmanager.kubernetes.io/mode: Reconcile
      name: system:coredns
    rules:
    - apiGroups:
      - ""
      resources:
      - endpoints
      - services
      - pods
      - namespaces
      verbs:
      - list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/internal/abi/funcpc_gccgo.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // For bootstrapping with gccgo.
    
    //go:build gccgo
    
    package abi
    
    import "unsafe"
    
    func FuncPCABI0(f interface{}) uintptr {
    	words := (*[2]unsafe.Pointer)(unsafe.Pointer(&f))
    	return *(*uintptr)(unsafe.Pointer(words[1]))
    }
    
    func FuncPCABIInternal(f interface{}) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 27 21:15:37 UTC 2023
    - 530 bytes
    - Viewed (0)
  4. cluster/addons/dns/coredns/coredns.yaml.sed

      labels:
          kubernetes.io/cluster-service: "true"
          addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        kubernetes.io/bootstrapping: rbac-defaults
        addonmanager.kubernetes.io/mode: Reconcile
      name: system:coredns
    rules:
    - apiGroups:
      - ""
      resources:
      - endpoints
      - services
      - pods
      - namespaces
      verbs:
      - list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    		if err != nil {
    			t.Fatalf("unexpected error: %v", err)
    		}
    
    		if accessor.GetLabels()["kubernetes.io/bootstrapping"] != "rbac-defaults" {
    			t.Errorf("ClusterRole: %s GetLabels() = %s, want %s", accessor.GetName(), accessor.GetLabels(), map[string]string{"kubernetes.io/bootstrapping": "rbac-defaults"})
    		}
    	}
    
    	rolebindings := bootstrappolicy.ClusterRoleBindings()
    	for i := range rolebindings {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. tools/certs/README.md

    # Generating Certificates for Bootstrapping Multicluster / Mesh Expansion Chain of Trust
    
    The directory contains two Makefiles for generating new root, intermediate certificates and workload certificates:
    - `Makefile.k8s.mk`: Creates certificates based on a root-ca from a k8s cluster. The current context in the default
    `kubeconfig` is used for accessing the cluster.
    - `Makefile.selfsigned.mk`: Creates certificates based on a generated self-signed root.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 20:29:15 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/goos/gengoos.go

    		}
    		if target == "darwin" {
    			tags = append(tags, "!ios") // must explicitly exclude ios for darwin
    		}
    		tags = append(tags, target) // must explicitly include target for bootstrapping purposes
    		var buf bytes.Buffer
    		fmt.Fprintf(&buf, "// Code generated by gengoos.go using 'go generate'. DO NOT EDIT.\n\n")
    		fmt.Fprintf(&buf, "//go:build %s\n\n", strings.Join(tags, " && "))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 15 21:31:23 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. pkg/apis/scheduling/v1/helpers.go

    	"fmt"
    	"k8s.io/api/scheduling/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/kubernetes/pkg/apis/scheduling"
    )
    
    // SystemPriorityClasses define system priority classes that are auto-created at cluster bootstrapping.
    // Our API validation logic ensures that any priority class that has a system prefix or its value
    // is higher than HighestUserDefinablePriority is equal to one of these SystemPriorityClasses.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 16:51:57 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  10. src/internal/goarch/gengoarch.go

    			continue
    		}
    		var buf bytes.Buffer
    		fmt.Fprintf(&buf, "// Code generated by gengoarch.go using 'go generate'. DO NOT EDIT.\n\n")
    		fmt.Fprintf(&buf, "//go:build %s\n\n", target) // must explicitly include target for bootstrapping purposes
    		fmt.Fprintf(&buf, "package goarch\n\n")
    		fmt.Fprintf(&buf, "const GOARCH = `%s`\n\n", target)
    		for _, goarch := range goarches {
    			value := 0
    			if goarch == target {
    				value = 1
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 15 21:31:23 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top