Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 128 for cpsr (0.05 sec)

  1. tests/integration/pilot/revisioned_upgrade_test.go

    func TestRevisionedUpgrade(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		// Requires installation of CPs from manifests, won't succeed
    		// if existing CPs have different root cert
    		Label(label.CustomSetup).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/pull/46213")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap.go

    			{
    				Kind: rbac.GroupKind,
    				Name: constants.NodeBootstrapTokenAuthGroup,
    			},
    		},
    	})
    }
    
    // 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 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 10:49:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. security/pkg/pki/util/crypto_test.go

    		"Invalid PEM string": {
    			errMsg: "certificate signing request is not properly encoded",
    			pem:    "bad pem string",
    		},
    		"Invalid CSR string": {
    			errMsg: "failed to parse X.509 certificate signing request",
    			pem:    certECDSA,
    		},
    		"Parse CSR": {
    			algo: x509.RSA,
    			pem:  csr,
    		},
    	}
    
    	for id, c := range testCases {
    		_, err := ParsePemEncodedCSR([]byte(c.pem))
    		if c.errMsg != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/cache/secretcache.go

    	}
    
    	// Generate the cert/key, send CSR to CA.
    	csrPEM, keyPEM, err := pkiutil.GenCSR(options)
    	if err != nil {
    		cacheLog.Errorf("%s failed to generate key and certificate for CSR: %v", logPrefix, err)
    		return nil, err
    	}
    
    	numOutgoingRequests.With(RequestType.Value(monitoring.CSR)).Increment()
    	timeBeforeCSR := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. test/codegen/math.go

    	return float32(math.Abs(float64(x)))
    }
    
    // Check that it's using integer registers
    func copysign(a, b, c float64) {
    	// amd64:"BTRQ\t[$]63","ANDQ","ORQ"
    	// s390x:"CPSDR",-"MOVD"         (no integer load/store)
    	// ppc64x:"FCPSGN"
    	// riscv64:"FSGNJD"
    	// wasm:"F64Copysign"
    	sink64[0] = math.Copysign(a, b)
    
    	// amd64:"BTSQ\t[$]63"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. security/pkg/pki/util/crypto.go

    	block, _ := pem.Decode(csrBytes)
    	if block == nil {
    		return nil, fmt.Errorf("certificate signing request is not properly encoded")
    	}
    	csr, err := x509.ParseCertificateRequest(block.Bytes)
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse X.509 certificate signing request")
    	}
    	return csr, nil
    }
    
    // ParsePemEncodedKey takes a PEM-encoded key and parsed the bytes into a `crypto.PrivateKey`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/multi_version_revision_test.go

    func TestMultiVersionRevision(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		// Requires installation of CPs from manifests, won't succeed
    		// if existing CPs have different root cert
    		Label(label.CustomSetup).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/pull/46213")
    			skipIfK8sVersionUnsupported(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/certs.go

    	Renewal by default tries to use the certificate authority in the local PKI managed by kubeadm; as alternative
    	it is possible to use K8s certificate API for certificate renewal, or as a last option, to generate a CSR request.
    
    	After renewal, in order to make changes effective, is required to restart control-plane components and
    	eventually re-distribute the renewed certificate in case the file is used elsewhere.
    `)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/ca.go

    	if signingCert == nil {
    		return nil, caerror.NewError(caerror.CANotReady, fmt.Errorf("Istio CA is not ready")) // nolint
    	}
    
    	csr, err := util.ParsePemEncodedCSR(csrPEM)
    	if err != nil {
    		return nil, caerror.NewError(caerror.CSRError, err)
    	}
    
    	if err := csr.CheckSignature(); err != nil {
    		return nil, caerror.NewError(caerror.CSRError, err)
    	}
    
    	lifetime := requestedLifetime
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/certlist.go

    		return errors.Errorf("%s: key or CSR %s/%s", errExist, certDir, name)
    	}
    	cfg, err := cert.GetConfig(kubeadmConfig)
    	if err != nil {
    		return err
    	}
    	csr, key, err := pkiutil.NewCSRAndKey(cfg)
    	if err != nil {
    		return err
    	}
    	err = pkiutil.WriteKey(certDir, name, key)
    	if err != nil {
    		return err
    	}
    	return pkiutil.WriteCSR(certDir, name, csr)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top