Skip to content

Commit

Permalink
add s3 gateway domain name to chart
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyaug committed Aug 6, 2020
1 parent bb43d3e commit 8aa16d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/lakefs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: lakefs
description: A Helm chart for Kubernetes
type: application
version: 0.1.2
version: 0.1.3
appVersion: 0.8.1

home: https://lakefs.io
Expand Down
1 change: 1 addition & 0 deletions charts/lakefs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ If you can't provide such access, you can use an AWS key-pair to authenticate (s
| `blockstore.s3.region` | AWS region where to use for storage | |
| `blockstore.s3.credentials.accessKeyId` | AWS Access Key to use when accessing S3. Leave empty if your Kuberenets nodes have access to your buckets. | |
| `blockstore.s3.credentials.secretAccessKey` | AWS Secret Key to use when accessing S3. Leave empty if your Kuberenets nodes have access to your buckets. | |
| `gateways.s3.domain_name` | Domain name to be used by clients to call the lakeFS S3-compatible API | |
| `databaseConnectionString` | Connection string to your lakeFS database | |
| `authEncryptSecretKey` | A cryptographically secure random string | |
| `replicaCount` | Number of lakeFS pods | `1` |
Expand Down
2 changes: 2 additions & 0 deletions charts/lakefs/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ spec:
value: {{ .Values.databaseConnectionString }}
- name: LAKEFS_BLOCKSTORE_TYPE
value: {{ .Values.blockstore.type | default "local" }}
- name: LAKEFS_GATEWAYS_S3_DOMAIN_NAME
value: {{ .Values.gateways.s3.domain_name }}
{{- if eq .Values.blockstore.type "local" }}
- name: LAKEFS_BLOCKSTORE_LOCAL_PATH
value: {{ .Values.blockstore.local.path | default "/home/lakefs" }}
Expand Down

0 comments on commit 8aa16d1

Please sign in to comment.