From 72b52101b2c6f48a656ec40f33323e36e5f8afbb Mon Sep 17 00:00:00 2001 From: Yoni Date: Thu, 28 Dec 2023 21:17:00 +0200 Subject: [PATCH] Add documentaiton for service account (#221) * Add documentaiton for service account * Bump chart version --- charts/lakefs/Chart.yaml | 2 +- charts/lakefs/README.md | 2 +- charts/lakefs/values.yaml | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/charts/lakefs/Chart.yaml b/charts/lakefs/Chart.yaml index 92fc616..6a1fae0 100644 --- a/charts/lakefs/Chart.yaml +++ b/charts/lakefs/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: lakefs description: A Helm chart for running LakeFS on Kubernetes type: application -version: 1.0.8 +version: 1.0.9 appVersion: 1.4.0 home: https://lakefs.io diff --git a/charts/lakefs/README.md b/charts/lakefs/README.md index ab87580..9baf08e 100644 --- a/charts/lakefs/README.md +++ b/charts/lakefs/README.md @@ -131,4 +131,4 @@ helm upgrade -f my-values.yaml my-lakefs lakefs/lakefs --set kv_upgrade=true | `s3Fallback.aws_access_key` | An AWS access key to be used by the S3Proxy for authentication | | | `s3Fallback.aws_secret_key` | An AWS secret key to be used by the S3Proxy for authentication | | | `committedLocalCacheVolume` | A volume definition to be mounted by lakeFS and used for caching committed metadata. See [here](https://kubernetes.io/docs/concepts/storage/volumes/#volume-types) for a list of supported volume types. The default values.yaml file shows an example of how to use this parameter. | | - +| `serviceAccount.name` | Name of the service account to use for the lakeFS pods. If not set, use the `default` service account. | | diff --git a/charts/lakefs/values.yaml b/charts/lakefs/values.yaml index ef49bf3..cda40e3 100644 --- a/charts/lakefs/values.yaml +++ b/charts/lakefs/values.yaml @@ -77,6 +77,10 @@ lakefsConfig: | serviceAccount: {} +# to use an existing service account, replace the serviceAccount map above with the following: +# serviceAccount: +# name: "my-serviceaccount" + # Extra Environment Values - allows yaml definitions extraEnvVars: # - name: VALUE_FROM_SECRET