Expose signature version property for s3 storage configs (#9299)

**What this PR does / why we need it**:
This exposed the a `signatureVersion` property in the helm chart's
storage config options that can be used to set the `signature_version`
for a Loki S3 storage config.
pull/9300/merge helm-loki-5.3.0
Trevor Whitney 2 years ago committed by GitHub
parent 475eb6a190
commit 95888f5bd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      docs/sources/installation/helm/reference.md
  2. 2
      production/helm/loki/Chart.yaml
  3. 2
      production/helm/loki/README.md
  4. 2
      production/helm/loki/reference.md.gotmpl
  5. 3
      production/helm/loki/templates/_helpers.tpl
  6. 1
      production/helm/loki/values.yaml

@ -1,5 +1,5 @@
---
title: Helm chart values
title: Helm Chart Values
menuTitle: Helm chart values
description: Reference for Helm Chart values.
weight: 200
@ -1918,7 +1918,8 @@ null
"region": null,
"s3": null,
"s3ForcePathStyle": false,
"secretAccessKey": null
"secretAccessKey": null,
"signatureVersion": null
},
"type": "s3"
}

@ -3,7 +3,7 @@ name: loki
description: Helm chart for Grafana Loki in simple, scalable mode
type: application
appVersion: 2.8.0
version: 5.2.0
version: 5.3.0
home: https://grafana.github.io/helm-charts
sources:
- https://github.com/grafana/loki

@ -1,6 +1,6 @@
# loki
![Version: 5.2.0](https://img.shields.io/badge/Version-5.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.0](https://img.shields.io/badge/AppVersion-2.8.0-informational?style=flat-square)
![Version: 5.3.0](https://img.shields.io/badge/Version-5.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.0](https://img.shields.io/badge/AppVersion-2.8.0-informational?style=flat-square)
Helm chart for Grafana Loki in simple, scalable mode

@ -1,5 +1,5 @@
---
title: Helm chart values
title: Helm Chart Values
menuTitle: Helm chart values
description: Reference for Helm Chart values.
weight: 200

@ -205,6 +205,9 @@ s3:
{{- with .accessKeyId }}
access_key_id: {{ . }}
{{- end }}
{{- with .signatureVersion }}
signature_version: {{ . }}
{{- end }}
s3forcepathstyle: {{ .s3ForcePathStyle }}
insecure: {{ .insecure }}
{{- with .http_config}}

@ -233,6 +233,7 @@ loki:
region: null
secretAccessKey: null
accessKeyId: null
signatureVersion: null
s3ForcePathStyle: false
insecure: false
http_config: {}

Loading…
Cancel
Save