Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for detectSigningCABundle (0.37 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    	}
    
    	return structuredPayload, nil
    }
    
    // detectSigningCABundle determines in which format the signing ca files are created.
    // kubernetes tls secrets mount files as tls.crt,tls.key,ca.crt
    // istiod secret is ca-cert.pem ca-key.pem cert-chain.pem root-cert.pem
    func detectSigningCABundle() (ca.SigningCAFileBundle, error) {
    	tlsSigningFile := path.Join(LocalCertDir.Get(), ca.TLSSecretCACertFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/certcontroller.go

    	if err != nil {
    		return fmt.Errorf("failed generating istiod key cert %v", err)
    	}
    	log.Infof("Generating istiod-signed cert for %v:\n %s", s.dnsNames, certChain)
    
    	fileBundle, err := detectSigningCABundle()
    	if err != nil {
    		return fmt.Errorf("unable to determine signing file format %v", err)
    	}
    
    	istioGenerated, detectedSigningCABundle := false, false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top