mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Add option to log acme debug messages (#3085)
* Add option to log acme debug messages * Bump minor version to reflect new logging feature * Update Chart.yaml
This commit is contained in:
committed by
k8s-ci-robot
parent
bd48ed8666
commit
7e4a656f7d
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: traefik
|
||||
version: 1.15.0
|
||||
version: 1.15.1
|
||||
appVersion: 1.4.5
|
||||
description: A Traefik based Kubernetes ingress controller with Let's Encrypt support
|
||||
keywords:
|
||||
|
||||
@@ -106,6 +106,7 @@ The following tables lists the configurable parameters of the Traefik chart and
|
||||
| `acme.enabled` | Whether to use Let's Encrypt to obtain certificates | `false` |
|
||||
| `acme.email` | Email address to be used in certificates obtained from Let's Encrypt | `admin@example.com` |
|
||||
| `acme.staging` | Whether to get certs from Let's Encrypt's staging environment | `true` |
|
||||
| `acme.logging` | display debug log messages from the acme client library | `false` |
|
||||
| `acme.persistence.enabled` | Create a volume to store ACME certs (if ACME is enabled) | `true` |
|
||||
| `acme.persistence.storageClass` | Type of `StorageClass` to request-- will be cluster-specific | `nil` (uses alpha storage class annotation) |
|
||||
| `acme.persistence.accessMode` | `ReadWriteOnce` or `ReadOnly` | `ReadWriteOnce` |
|
||||
|
||||
@@ -71,6 +71,9 @@ data:
|
||||
{{- if .Values.acme.staging }}
|
||||
caServer = "https://acme-staging.api.letsencrypt.org/directory"
|
||||
{{- end }}
|
||||
{{- if .Values.acme.logging }}
|
||||
acmeLogging = true
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.dashboard.enabled }}
|
||||
[web]
|
||||
|
||||
@@ -33,6 +33,7 @@ acme:
|
||||
enabled: false
|
||||
email: admin@example.com
|
||||
staging: true
|
||||
logging: false
|
||||
## Save ACME certs to a persistent volume. WARNING: If you do not do this, you will re-request
|
||||
## certs every time a pod (re-)starts and you WILL be rate limited!
|
||||
persistence:
|
||||
|
||||
Reference in New Issue
Block a user