Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 155 for approval (0.13 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    			rbacv1helpers.NewRule("update").Groups(certificatesGroup).Resources("certificatesigningrequests/status", "certificatesigningrequests/approval").RuleOrDie(),
    			rbacv1helpers.NewRule("approve").Groups(certificatesGroup).Resources("signers").Names(capi.KubeAPIServerClientKubeletSignerName).RuleOrDie(),
    			rbacv1helpers.NewRule("sign").Groups(certificatesGroup).Resources("signers").Names(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/join.go

    	joinControPlaneDoneTemp = template.Must(template.New("join").Parse(dedent.Dedent(`
    		This node has joined the cluster and a new control plane instance was created:
    
    		* Certificate signing request was sent to apiserver and approval was received.
    		* The Kubelet was informed of the new secure connection details.
    		* Control plane label and taint were applied to the new node.
    		* The Kubernetes control plane instances scaled up.
    		{{.etcdMessage}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // This file also defines the set of valid module path and version combinations,
    // another topic with many subtle considerations.
    //
    // Changes to the semantics in this file require approval from rsc.
    
    import (
    	"errors"
    	"fmt"
    	"path"
    	"sort"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"golang.org/x/mod/semver"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. .github/workflows/label-approved.yml

    name: Label Approved
    
    on:
      schedule:
        - cron: "0 12 * * *"
      workflow_dispatch:
    
    jobs:
      label-approved:
        if: github.repository_owner == 'tiangolo'
        runs-on: ubuntu-latest
        steps:
        - name: Dump GitHub context
          env:
            GITHUB_CONTEXT: ${{ toJson(github) }}
          run: echo "$GITHUB_CONTEXT"
        - uses: docker://tiangolo/label-approved:0.0.4
          with:
            token: ${{ secrets.FASTAPI_LABEL_APPROVED }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 18:43:10 UTC 2024
    - 610 bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	tlsCipherPreferredValues := cliflag.PreferredTLSCipherNames()
    	tlsCipherInsecureValues := cliflag.InsecureTLSCipherNames()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. pkg/controller/certificates/cleaner/cleaner.go

    // signing requests (CSRs). Since there are mechanisms that automatically
    // create CSRs, and mechanisms that automatically approve CSRs, in order to
    // prevent a build up of CSRs over time, it is necessary to GC them. CSRs will
    // be removed if they meet one of the following criteria: the CSR is Approved
    // with a certificate and is old enough to be past the GC issued deadline, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.7.md

    * kubectl logs with label selector supports specifying a container name ([#44282](https://github.com/kubernetes/kubernetes/pull/44282), [@derekwaynecarr](https://github.com/derekwaynecarr))
    * Adds an approval work flow to the certificate approver that will approve certificate signing requests from kubelets that meet all the criteria of kubelet server certificates. ([#46884](https://github.com/kubernetes/kubernetes/pull/46884), [@jcbsmpsn](https://github.com/jcbsmpsn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  8. security/pkg/k8s/chiron/utils.go

    	defer func() {
    		_ = cleanupCSR(client, csr)
    	}()
    
    	// 2. Approve the CSR
    	if approveCsr {
    		approvalMessage := fmt.Sprintf("CSR (%s) for the certificate (%s) is approved", csr.Name, dnsName)
    		err = approveCSR(client, csr, approvalMessage)
    		if err != nil {
    			return nil, nil, fmt.Errorf("failed to approve CSR request: %v", err)
    		}
    		log.Debugf("CSR (%v) is approved", csr.Name)
    	}
    
    	// 3. Read the signed certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap.go

    		},
    	})
    }
    
    // AutoApproveNodeBootstrapTokens creates RBAC rules in a way that makes Node Bootstrap Tokens' CSR auto-approved by the csrapprover controller
    func AutoApproveNodeBootstrapTokens(client clientset.Interface) error {
    	fmt.Println("[bootstrap-token] Configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token")
    
    	// Always create this kubeadm-specific binding though
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 10:49:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:certificates.k8s.io:kube-apiserver-client-approver
      rules:
      - apiGroups:
        - certificates.k8s.io
        resourceNames:
        - kubernetes.io/kube-apiserver-client
        resources:
        - signers
        verbs:
        - approve
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
Back to top