Skip to content

Commit

Permalink
Support the flytectl config.yaml admin.clientSecretEnvVar option in f…
Browse files Browse the repository at this point in the history
…lytekit (flyteorg#1819)

* Support the flytectl config.yaml admin.clientSecretEnvVar option in flytekit

Signed-off-by: Chao-Heng Lee <chaohengstudent@gmail.com>

* remove helper of getting env var.

Signed-off-by: Chao-Heng Lee <chaohengstudent@gmail.com>

* refactor variable name.

Signed-off-by: Chao-Heng Lee <chaohengstudent@gmail.com>

---------

Signed-off-by: Chao-Heng Lee <chaohengstudent@gmail.com>
  • Loading branch information
chaohengstudent authored and hhcs9527 committed Sep 9, 2023
1 parent 58428be commit 88fd727
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 4 deletions.
18 changes: 15 additions & 3 deletions flytekit/configuration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,19 +418,31 @@ def auto(cls, config_file: typing.Optional[typing.Union[str, ConfigFile]] = None
kwargs, "client_credentials_secret", _internal.Credentials.CLIENT_CREDENTIALS_SECRET.read(config_file)
)

is_client_secret = False
client_credentials_secret = read_file_if_exists(
_internal.Credentials.CLIENT_CREDENTIALS_SECRET_LOCATION.read(config_file)
)
if client_credentials_secret and client_credentials_secret.endswith("\n"):
logger.info("Newline stripped from client secret")
client_credentials_secret = client_credentials_secret.strip()
if client_credentials_secret:
is_client_secret = True
if client_credentials_secret.endswith("\n"):
logger.info("Newline stripped from client secret")
client_credentials_secret = client_credentials_secret.strip()
kwargs = set_if_exists(
kwargs,
"client_credentials_secret",
client_credentials_secret,
)

client_credentials_secret_env_var = _internal.Credentials.CLIENT_CREDENTIALS_SECRET_ENV_VAR.read(config_file)
if client_credentials_secret_env_var:
client_credentials_secret = os.getenv(client_credentials_secret_env_var)
if client_credentials_secret:
is_client_secret = True
kwargs = set_if_exists(kwargs, "client_credentials_secret", client_credentials_secret)
kwargs = set_if_exists(kwargs, "scopes", _internal.Credentials.SCOPES.read(config_file))
kwargs = set_if_exists(kwargs, "auth_mode", _internal.Credentials.AUTH_MODE.read(config_file))
if is_client_secret:
kwargs = set_if_exists(kwargs, "auth_mode", AuthType.CLIENTSECRET.value)
kwargs = set_if_exists(kwargs, "endpoint", _internal.Platform.URL.read(config_file))
kwargs = set_if_exists(kwargs, "console_endpoint", _internal.Platform.CONSOLE_ENDPOINT.read(config_file))

Expand Down
8 changes: 8 additions & 0 deletions flytekit/configuration/internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ class Credentials(object):
password from a mounted file.
"""

CLIENT_CREDENTIALS_SECRET_ENV_VAR = ConfigEntry(
LegacyConfigEntry(SECTION, "client_secret_env_var"), YamlConfigEntry("admin.clientSecretEnvVar")
)
"""
Used for basic auth, which is automatically called during pyflyte. This will allow the Flyte engine to read the
password from a mounted environment variable.
"""

SCOPES = ConfigEntry(LegacyConfigEntry(SECTION, "scopes", list), YamlConfigEntry("admin.scopes", list))

AUTH_MODE = ConfigEntry(LegacyConfigEntry(SECTION, "auth_mode"), YamlConfigEntry("admin.authType"))
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
admin:
# For GRPC endpoints you might want to use dns:///flyte.myexample.com
endpoint: dns:///flyte.mycorp.io
clientSecretEnvVar: FAKE_SECRET_NAME
insecure: true
clientId: propeller
scopes:
- all
storage:
connection:
access-key: minio
endpoint: http://localhost:30084
secret-key: miniostorage
21 changes: 20 additions & 1 deletion tests/flytekit/unit/configuration/test_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import mock

from flytekit.configuration import PlatformConfig, get_config_file, read_file_if_exists
from flytekit.configuration import AuthType, PlatformConfig, get_config_file, read_file_if_exists
from flytekit.configuration.internal import AWS, Credentials, Images


Expand Down Expand Up @@ -45,6 +45,25 @@ def test_client_secret_location():
# Assert that secret in platform config does not contain a newline
platform_cfg = PlatformConfig.auto(cfg)
assert platform_cfg.client_credentials_secret == "hello"
assert platform_cfg.auth_mode == AuthType.CLIENTSECRET.value


@mock.patch.dict("os.environ")
def test_client_secret_env_var():
cfg = get_config_file(os.path.join(os.path.dirname(os.path.realpath(__file__)), "configs/sample.yaml"))
secret_env_var = Credentials.CLIENT_CREDENTIALS_SECRET_ENV_VAR.read(cfg)
assert secret_env_var is None

cfg = get_config_file(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "configs/creds_secret_env_var.yaml")
)
secret_env_var = Credentials.CLIENT_CREDENTIALS_SECRET_ENV_VAR.read(cfg)
assert secret_env_var == "FAKE_SECRET_NAME"

os.environ["FAKE_SECRET_NAME"] = "fake_secret_value"
platform_cfg = PlatformConfig.auto(cfg)
assert platform_cfg.client_credentials_secret == "fake_secret_value"
assert platform_cfg.auth_mode == AuthType.CLIENTSECRET.value


def test_read_file_if_exists():
Expand Down

0 comments on commit 88fd727

Please sign in to comment.