diff --git a/docs/deployment/plugins/webapi/databricks.rst b/docs/deployment/plugins/webapi/databricks.rst index 671fdb4e18..69f710677c 100644 --- a/docs/deployment/plugins/webapi/databricks.rst +++ b/docs/deployment/plugins/webapi/databricks.rst @@ -288,7 +288,7 @@ Add the Databricks access token to FlytePropeller: .. group-tab:: Helm chart - Create an external secret as follows: + Create a secret as follows (or add to it if it already exists from other plugins): .. code-block:: bash @@ -296,7 +296,7 @@ Add the Databricks access token to FlytePropeller: apiVersion: v1 kind: Secret metadata: - name: flyte-binary-client-secrets-external-secret + name: flyte-binary-external-services namespace: flyte type: Opaque stringData: @@ -304,16 +304,15 @@ Add the Databricks access token to FlytePropeller: EOF Reference the newly created secret in - ``.Values.configuration.auth.clientSecretsExternalSecretRef`` + ``.Values.configuration.inlineSecretRef`` in your YAML file as follows: .. code-block:: yaml - :emphasize-lines: 3 + :emphasize-lines: 2 configuration: - auth: - clientSecretsExternalSecretRef: flyte-binary-client-secrets-external-secret - + inlineSecretRef: flyte-binary-external-services + Replace ```` with your access token. .. group-tab:: Flyte core diff --git a/docs/deployment/plugins/webapi/snowflake.rst b/docs/deployment/plugins/webapi/snowflake.rst index 85f13fe115..a4ac2d35cf 100644 --- a/docs/deployment/plugins/webapi/snowflake.rst +++ b/docs/deployment/plugins/webapi/snowflake.rst @@ -154,7 +154,7 @@ Then, add the Snowflake JWT token to FlytePropeller. .. group-tab:: Helm chart - Create an external secret as follows: + Create a secret as follows (or add to it if it already exists from other plugins): .. code-block:: bash @@ -162,7 +162,7 @@ Then, add the Snowflake JWT token to FlytePropeller. apiVersion: v1 kind: Secret metadata: - name: flyte-binary-client-secrets-external-secret + name: flyte-binary-external-services namespace: flyte type: Opaque stringData: @@ -170,16 +170,15 @@ Then, add the Snowflake JWT token to FlytePropeller. EOF Reference the newly created secret in - ``.Values.configuration.auth.clientSecretsExternalSecretRef`` + ``.Values.configuration.inlineSecretRef`` in your YAML file as follows: .. code-block:: yaml - :emphasize-lines: 3 + :emphasize-lines: 2 configuration: - auth: - clientSecretsExternalSecretRef: flyte-binary-client-secrets-external-secret - + inlineSecretRef: flyte-binary-external-services + Replace ```` with your JWT token. .. group-tab:: Flyte core