Skip to content

Commit

Permalink
Merge pull request #51 from Arnonrgo/fix-azure-storage-setup
Browse files Browse the repository at this point in the history
Fix azure storage setup
  • Loading branch information
fmassot authored Jun 12, 2023
2 parents ab2dc42 + 3d868f8 commit dab71b1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/quickwit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: quickwit
description: Sub-second search & analytics engine on cloud storage.
type: application
version: 0.3.8
appVersion: v0.5.0
version: 0.4.0
appVersion: "v0.6.1"
keywords:
- quickwit
- search
Expand Down
6 changes: 5 additions & 1 deletion charts/quickwit/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,12 @@ Quickwit environment
key: s3.secret_key
{{- end }}
{{- end }}
{{- if .Values.config.azure_blob.account_name }}
- name: QW_AZURE_STORAGE_ACCOUNT
value: {{ .Values.config.azure_blob.account_name }}
{{- end }}
{{- if .Values.config.azure_blob.access_key }}
- name: QW_AZURE_ACCESS_KEY
- name: QW_AZURE_STORAGE_ACCESS_KEY
valueFrom:
secretKeyRef:
name: {{ include "quickwit.fullname" $ }}
Expand Down
3 changes: 2 additions & 1 deletion charts/quickwit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ image:
repository: quickwit/quickwit
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# tag: v0.5.0
# tag: v0.6.1

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -320,6 +320,7 @@ config:
# secret_key: "my-secret-key"

azure_blob: {}
# account_name: "my-azure-blob-accout"
# access_key: "my-azure-blob-access-key"

default_index_root_uri: s3://quickwit/indexes
Expand Down

0 comments on commit dab71b1

Please sign in to comment.