mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/velero] Add logLevel and logFormat Velero (#19103)
Signed-off-by: Rick Haan <rickhaan94@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
0f33dd1e0b
commit
c822cfae77
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: 1.1.0
|
||||
description: A Helm chart for velero
|
||||
name: velero
|
||||
version: 2.4.0
|
||||
version: 2.5.0
|
||||
home: https://github.com/vmware-tanzu/velero
|
||||
icon: https://cdn-images-1.medium.com/max/1600/1*-9mb3AKnKdcL_QD3CMnthQ.png
|
||||
sources:
|
||||
|
||||
@@ -91,6 +91,8 @@ Parameter | Description | Default
|
||||
`configuration.volumeSnapshotLocation.config.resourceGroup` | The name of the resource group where volume snapshots should be stored, if different from the cluster’s resource group. (Azure only) |
|
||||
`configuration.volumeSnapshotLocation.config.project` | The project ID where snapshots should be stored, if different than the project that your IAM account is in. (GCP only) |
|
||||
`configuration.volumeSnapshotLocation.config.snapshotLocation` | The location where the snapshots will be stored. (GCP only) |
|
||||
`configuration.logLevel` | Set log-level for Velero pod. Default: info. Other options: debug, warning, error, fatal, panic. |
|
||||
`configuration.logFormat` | Set log-format for Velero pod. Default: text. Other option: json. |
|
||||
`credentials.existingSecret` | If specified and `useSecret` is `true`, uses an existing secret with this name instead of creating one | ``
|
||||
`credentials.useSecret` | Whether a secret should be used. Set this to `false` when using `kube2iam` | `true`
|
||||
`credentials.secretContents` | Contents for the credentials secret | `{}`
|
||||
|
||||
@@ -63,6 +63,12 @@ spec:
|
||||
{{- with .restoreResourcePriorities }}
|
||||
- --restore-resource-priorities={{ . }}
|
||||
{{- end }}
|
||||
{{- with .logLevel }}
|
||||
- --log-level={{ . }}
|
||||
{{- end }}
|
||||
{{- with .logFormat }}
|
||||
- --log-format={{ . }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if eq $provider "azure" }}
|
||||
envFrom:
|
||||
|
||||
@@ -123,6 +123,12 @@ configuration:
|
||||
# additional key/value pairs to be used as environment variables such as "AWS_CLUSTER_NAME: 'yourcluster.domain.tld'"
|
||||
extraEnvVars: {}
|
||||
|
||||
# Set log-level for Velero pod. Default: info. Other options: debug, warning, error, fatal, panic.
|
||||
logLevel:
|
||||
|
||||
# Set log-format for Velero pod. Default: text. Other option: json.
|
||||
logFormat:
|
||||
|
||||
##
|
||||
## End of backup/snapshot location settings.
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user