@@ -294,11 +294,16 @@ admissionWebhooks:
294294 namespaceSelector : {}
295295 objectSelector : {}
296296
297+ # # Choose the certificate approach to take
298+ # # - prefer-cert-manager (default): Uses cert manager if available, falls back to generated certificates
299+ # # - cert-manager: Use cert-manager to generate certificates
300+ # # - helm-generated: Generate certificates with helm
301+ # # - self-signed: Provide your own certificate
302+ certificateSource : ' prefer-cert-manager'
303+
297304 # # https://github.com/open-telemetry/opentelemetry-helm-charts/blob/main/charts/opentelemetry-operator/README.md#tls-certificate-requirement
298305 # # TLS Certificate Option 1: Use certManager to generate self-signed certificate.
299- # # certManager must be enabled. If enabled, always takes precedence over options 2 and 3.
300306 certManager :
301- enabled : true
302307 # # Provide the issuer kind and name to do the cert auth job.
303308 # # By default, OpenTelemetry Operator will use self-signer issuer.
304309 issuerRef : {}
@@ -315,17 +320,14 @@ admissionWebhooks:
315320 renewBefore : " "
316321
317322 # # TLS Certificate Option 2: Use Helm to automatically generate self-signed certificate.
318- # # certManager must be disabled and autoGenerateCert must be enabled.
319- # # If true and certManager.enabled is false, Helm will automatically create a self-signed cert and secret for you.
320323 autoGenerateCert :
321- enabled : true
322324 # If set to true, new webhook key/certificate is generated on helm upgrade.
323325 recreate : true
324326 # Cert period time in days. The default is 365 days.
325327 certPeriodDays : 365
326328
327329 # # TLS Certificate Option 3: Use your own self-signed certificate.
328- # # certManager and autoGenerateCert must be disabled and certFile, keyFile, and caFile must be set.
330+ # # certFile, keyFile, and caFile must be set.
329331 # # The chart reads the contents of the file paths with the helm .Files.Get function.
330332 # # Refer to this doc https://helm.sh/docs/chart_template_guide/accessing_files/ to understand
331333 # # limitations of file paths accessible to the chart.
0 commit comments