Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for approval (0.16 sec)

  1. pkg/kubeapiserver/options/plugins.go

    	"k8s.io/kubernetes/plugin/pkg/admission/admit"
    	"k8s.io/kubernetes/plugin/pkg/admission/alwayspullimages"
    	"k8s.io/kubernetes/plugin/pkg/admission/antiaffinity"
    	certapproval "k8s.io/kubernetes/plugin/pkg/admission/certificates/approval"
    	"k8s.io/kubernetes/plugin/pkg/admission/certificates/ctbattest"
    	certsigning "k8s.io/kubernetes/plugin/pkg/admission/certificates/signing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/veeam-sos-api.go

    //     compression). This is an optional area; by default, there should be no <SystemRecommendations> section in the
    //     system.xml. Vendors can work with Veeam Product Management and the Alliances team on getting approval to integrate
    //     specific system recommendations based on current support case statistics and storage performance possibilities.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. .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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/registry/certificates/certificates/storage/metrics.go

    			// note that this means that we will ignore CSRs that set a duration
    			// but never get approved/signed.  this is fine because the point
    			// of these metrics is to understand if the duration is honored
    			// by the signer.  we are not checking the behavior of the approver.
    			if len(issuedCert) == 0 {
    				return
    			}
    
    			signer := compressSignerName(oldCSR.Spec.SignerName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. hack/verify-licenses.sh

    echo '[INFO] Installing go-licenses...'
    go install github.com/google/go-licenses@latest
    
    # Fetching CNCF Approved List Of Licenses
    # Refer: https://github.com/cncf/foundation/blob/main/allowed-third-party-license-policy.md
    curl -s 'https://spdx.org/licenses/licenses.json' -o "${ARTIFACTS}"/licenses.json
    
    echo '[INFO] Fetching current list of CNCF approved licenses...'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/controller/certificates/certificate_controller_utils.go

    	v1 "k8s.io/api/core/v1"
    )
    
    // IsCertificateRequestApproved returns true if a certificate request has the
    // "Approved" condition and no "Denied" conditions; false otherwise.
    func IsCertificateRequestApproved(csr *certificates.CertificateSigningRequest) bool {
    	approved, denied := GetCertApprovalCondition(&csr.Status)
    	return approved && !denied
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 07:05:23 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. pkg/controller/certificates/certificate_controller_utils_test.go

    		expectedIsApproved bool
    	}{
    		{
    			"Not any conditions exist",
    			nil,
    			false,
    		}, {
    			"Approved not exist and Denied exist",
    			[]certificatesapi.CertificateSigningRequestCondition{
    				{
    					Type: certificatesapi.CertificateDenied,
    				},
    			},
    			false,
    		}, {
    			"Approved exist and Denied not exist",
    			[]certificatesapi.CertificateSigningRequestCondition{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 05 22:45:34 UTC 2020
    - 1.9K bytes
    - Viewed (0)
Back to top