Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initDNSCertsIstiod (0.28 sec)

  1. pilot/pkg/bootstrap/certcontroller.go

    		}()
    		return nil
    	})
    	s.istiodCertBundleWatcher.SetAndNotify(keyPEM, certChain, caBundle)
    	return nil
    }
    
    // initDNSCertsIstiod will issue DNS certs using Istiod CA, and set the root certs for
    // distribution. Only called from initIstiodCerts if PILOT_CERT_PROVIDER=istiod (default)
    func (s *Server) initDNSCertsIstiod() error {
    	var certChain, keyPEM, caBundle []byte
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	} else if features.EnableCAServer && features.PilotCertProvider == constants.CertProviderIstiod {
    		log.Infof("initializing Istiod DNS certificates host: %s, custom host: %s", host, features.IstiodServiceCustomHost)
    		err = s.initDNSCertsIstiod()
    	} else if features.PilotCertProvider == constants.CertProviderKubernetes {
    		// This will not work - better to fail Istiod startup so it can be detected early.
    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