diff --git a/charts/flyte-binary/README.md b/charts/flyte-binary/README.md index 522764e1d6..ac76fb4dfa 100644 --- a/charts/flyte-binary/README.md +++ b/charts/flyte-binary/README.md @@ -190,3 +190,4 @@ Chart for basic single Flyte executable deployment | serviceAccount.imagePullSecrets | list | `[]` | | | serviceAccount.labels | object | `{}` | | | serviceAccount.name | string | `""` | | + diff --git a/charts/flyte-core/README.md b/charts/flyte-core/README.md index e94c5593d7..75740b9702 100644 --- a/charts/flyte-core/README.md +++ b/charts/flyte-core/README.md @@ -277,4 +277,4 @@ helm install gateway bitnami/contour -n flyte | webhook.serviceAccount.create | bool | `true` | Should a service account be created for the webhook | | webhook.serviceAccount.imagePullSecrets | list | `[]` | ImagePullSecrets to automatically assign to the service account | | workflow_notifications | object | `{"config":{},"enabled":false}` | **Optional Component** Workflow notifications module is an optional dependency. Flyte uses cloud native pub-sub systems to notify users of various events in their workflows | -| workflow_scheduler | object | `{"config":{},"enabled":false,"type":""}` | **Optional Component** Flyte uses a cloud hosted Cron scheduler to run workflows on a schedule. The following module is optional. Without, this module, you will not have scheduled launchplans / workflows. Docs: https://docs.flyte.org/en/latest/howto/enable_and_use_schedules.html#setting-up-scheduled-workflows | \ No newline at end of file +| workflow_scheduler | object | `{"config":{},"enabled":false,"type":""}` | **Optional Component** Flyte uses a cloud hosted Cron scheduler to run workflows on a schedule. The following module is optional. Without, this module, you will not have scheduled launchplans / workflows. Docs: https://docs.flyte.org/en/latest/howto/enable_and_use_schedules.html#setting-up-scheduled-workflows | diff --git a/charts/flyte-core/templates/admin/deployment.yaml b/charts/flyte-core/templates/admin/deployment.yaml index 97deb99457..8b6dff34af 100755 --- a/charts/flyte-core/templates/admin/deployment.yaml +++ b/charts/flyte-core/templates/admin/deployment.yaml @@ -72,6 +72,11 @@ spec: name: clusters-config-volume - mountPath: /etc/secrets/ name: admin-secrets + {{- if gt (len .Values.configmap.clusters.labelClusterMap) 0 }} + {{- with .Values.flyteadmin.additionalVolumeMounts -}} + {{ tpl (toYaml .) $ | nindent 10 }} + {{- end }} + {{- end }} {{- end }} - name: generate-secrets image: "{{ .Values.flyteadmin.image.repository }}:{{ .Values.flyteadmin.image.tag }}" diff --git a/charts/flyte-core/templates/clusterresourcesync/deployment.yaml b/charts/flyte-core/templates/clusterresourcesync/deployment.yaml index b89a599ab7..bf13c08080 100644 --- a/charts/flyte-core/templates/clusterresourcesync/deployment.yaml +++ b/charts/flyte-core/templates/clusterresourcesync/deployment.yaml @@ -41,7 +41,7 @@ spec: name: config-volume {{- if gt (len .Values.configmap.clusters.labelClusterMap) 0 }} - mountPath: /var/run/credentials - name: flyte-admin-secrets + name: cluster-secrets {{- end }} serviceAccountName: {{ .Values.cluster_resource_manager.service_account_name }} {{- if .Values.cluster_resource_manager.resources }} @@ -55,9 +55,9 @@ spec: name: flyte-clusterresourcesync-config name: config-volume {{- if gt (len .Values.configmap.clusters.labelClusterMap) 0 }} - - name: flyte-admin-secrets + - name: cluster-secrets secret: - secretName: flyte-admin-secrets + secretName: cluster-credentials {{- end }} {{- if .Values.cluster_resource_manager.config.cluster_resources.standaloneDeployment }} - name: auth diff --git a/charts/flyte-deps/README.md b/charts/flyte-deps/README.md index 4d21e6e18e..0cbf338fed 100644 --- a/charts/flyte-deps/README.md +++ b/charts/flyte-deps/README.md @@ -119,4 +119,4 @@ helm upgrade -f values.yaml flyte . | sparkoperator | object | `{"enabled":false}` | Optional: Spark Plugin using the Spark Operator | | sparkoperator.enabled | bool | `false` | - enable or disable Sparkoperator deployment installation | | webhook.enabled | bool | `true` | | -| webhook.service | object | `{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"}` | Service settings for the webhook | \ No newline at end of file +| webhook.service | object | `{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"}` | Service settings for the webhook | diff --git a/charts/flyte-sandbox/README.md b/charts/flyte-sandbox/README.md index 47821a9eac..2196a66bb4 100644 --- a/charts/flyte-sandbox/README.md +++ b/charts/flyte-sandbox/README.md @@ -101,3 +101,4 @@ A Helm chart for the Flyte local sandbox | sandbox.proxy.image.pullPolicy | string | `"Never"` | | | sandbox.proxy.image.repository | string | `"envoyproxy/envoy"` | | | sandbox.proxy.image.tag | string | `"sandbox"` | | + diff --git a/charts/flyte/README.md b/charts/flyte/README.md index 18f7c25fde..41d3ea1264 100644 --- a/charts/flyte/README.md +++ b/charts/flyte/README.md @@ -268,4 +268,4 @@ helm upgrade -f values-sandbox.yaml flyte . | redoc.service | object | `{"type":"ClusterIP"}` | Service settings for Minio | | redoc.tolerations | list | `[]` | tolerations for Minio deployment | | sparkoperator | object | `{"enabled":false}` | Optional: Spark Plugin using the Spark Operator | -| sparkoperator.enabled | bool | `false` | - enable or disable Sparkoperator deployment installation | \ No newline at end of file +| sparkoperator.enabled | bool | `false` | - enable or disable Sparkoperator deployment installation |