Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for approval (0.13 sec)

  1. api/discovery/aggregated_v2beta1.json

                      "responseKind": {
                        "group": "",
                        "kind": "CertificateSigningRequest",
                        "version": ""
                      },
                      "subresource": "approval",
                      "verbs": [
                        "get",
                        "patch",
                        "update"
                      ]
                    },
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. hack/update-vendor.sh

    hack/update-vendor-licenses.sh
    
    kube::log::status "vendor: creating OWNERS file" >&11
    rm -f "vendor/OWNERS"
    cat <<__EOF__ > "vendor/OWNERS"
    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    approvers:
    - dep-approvers
    reviewers:
    - dep-reviewers
    __EOF__
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                "type": "string"
              },
              "type": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  4. docs/de/docs/contributing.md

    * Sehen Sie diese Pull Requests durch (Review), schlagen Sie Änderungen vor, oder segnen Sie sie ab (Approval). Bei den Sprachen, die ich nicht spreche, warte ich, bis mehrere andere die Übersetzung durchgesehen haben, bevor ich den Pull Request merge.
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. .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)
  9. 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)
  10. 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)
Back to top