@@ -291,11 +291,16 @@ admissionWebhooks:
291291 namespaceSelector : {}
292292 objectSelector : {}
293293
294+ # # Choose the certificate approach to take
295+ # # - prefer-cert-manager (default): Uses cert manager if available, falls back to generated certificates
296+ # # - cert-manager: Use cert-manager to generate certificates
297+ # # - helm-generated: Generate certificates with helm
298+ # # - self-signed: Provide your own certificate
299+ certificateSource : ' helm-generated'
300+
294301 # # https://github.com/open-telemetry/opentelemetry-helm-charts/blob/main/charts/opentelemetry-operator/README.md#tls-certificate-requirement
295302 # # TLS Certificate Option 1: Use certManager to generate self-signed certificate.
296- # # certManager must be enabled. If enabled, always takes precedence over options 2 and 3.
297303 certManager :
298- enabled : true
299304 # # Provide the issuer kind and name to do the cert auth job.
300305 # # By default, OpenTelemetry Operator will use self-signer issuer.
301306 issuerRef : {}
@@ -312,17 +317,14 @@ admissionWebhooks:
312317 renewBefore : " "
313318
314319 # # TLS Certificate Option 2: Use Helm to automatically generate self-signed certificate.
315- # # certManager must be disabled and autoGenerateCert must be enabled.
316- # # If true and certManager.enabled is false, Helm will automatically create a self-signed cert and secret for you.
317320 autoGenerateCert :
318- enabled : true
319321 # If set to true, new webhook key/certificate is generated on helm upgrade.
320322 recreate : true
321323 # Cert period time in days. The default is 365 days.
322324 certPeriodDays : 365
323325
324326 # # TLS Certificate Option 3: Use your own self-signed certificate.
325- # # certManager and autoGenerateCert must be disabled and certFile, keyFile, and caFile must be set.
327+ # # certFile, keyFile, and caFile must be set.
326328 # # The chart reads the contents of the file paths with the helm .Files.Get function.
327329 # # Refer to this doc https://helm.sh/docs/chart_template_guide/accessing_files/ to understand
328330 # # limitations of file paths accessible to the chart.
0 commit comments