Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for caCertFile (0.26 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    		if certSignerDomain == "" {
    			log.Infof("CA cert file %q not found, using %q.", caCertFile, defaultCACertPath)
    			caCertFile = defaultCACertPath
    		} else {
    			log.Infof("CA cert file %q not found - ignoring.", caCertFile)
    			caCertFile = ""
    		}
    	}
    
    	if s.kubeClient == nil {
    		return nil, fmt.Errorf("kubeClient is nil")
    	}
    	raOpts := &ra.IstioRAOptions{
    		ExternalCAType:   opts.ExternalCAType,
    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/options.go

    	// Directory of injection related config files.
    	InjectionDirectory string
    }
    
    // TLSOptions is optional TLS parameters for Istiod server.
    type TLSOptions struct {
    	// CaCertFile and related are set using CLI flags.
    	CaCertFile      string
    	CertFile        string
    	KeyFile         string
    	TLSCipherSuites []string
    	CipherSuits     []uint16 // This is the parsed cipher suites
    }
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/certcontroller.go

    func (s *Server) initFileCertificateWatches(tlsOptions TLSOptions) error {
    	if err := s.istiodCertBundleWatcher.SetFromFilesAndNotify(tlsOptions.KeyFile, tlsOptions.CertFile, tlsOptions.CaCertFile); err != nil {
    		return fmt.Errorf("set keyCertBundle failed: %v", err)
    	}
    	// TODO: Setup watcher for root and restart server if it changes.
    	for _, file := range []string{tlsOptions.CertFile, tlsOptions.KeyFile} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server_test.go

    			FSCertsPaths: TLSFSLoadPaths{tlsArgcertFile, tlsArgkeyFile, tlsArgcaCertFile},
    			tlsOptions: &TLSOptions{
    				CertFile:   tlsArgcertFile,
    				KeyFile:    tlsArgkeyFile,
    				CaCertFile: tlsArgcaCertFile,
    			},
    			enableCA:                  false,
    			certProvider:              constants.CertProviderKubernetes,
    			expNewCert:                false,
    			expCert:                   testcerts.ServerCert,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    		// Use the DNS certificate provided via args or in well known location.
    		err = s.initFileCertificateWatches(TLSOptions{
    			CaCertFile: caCertPath,
    			KeyFile:    tlsKeyPath,
    			CertFile:   tlsCertPath,
    		})
    		if err != nil {
    			// Not crashing istiod - This typically happens if certs are missing and in tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top