Skip to content

Commit

Permalink
Update use_secrets.py (flyteorg#192)
Browse files Browse the repository at this point in the history
* Update use_secrets.py

* Update cookbook/core/containerization/use_secrets.py

Co-authored-by: Samhita Alla <[email protected]>

* Update use_secrets.py

* Update cookbook/core/containerization/use_secrets.py

Co-authored-by: Yee Hing Tong <[email protected]>

* Update cookbook/core/containerization/use_secrets.py

Co-authored-by: Samhita Alla <[email protected]>

* modified the content positioning (flyteorg#201)

Signed-off-by: Samhita Alla <[email protected]>

Co-authored-by: Samhita Alla <[email protected]>
Co-authored-by: Yee Hing Tong <[email protected]>
  • Loading branch information
3 people authored May 8, 2021
1 parent 4d97acf commit f4210be
Showing 1 changed file with 63 additions and 10 deletions.
73 changes: 63 additions & 10 deletions cookbook/core/containerization/use_secrets.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,47 @@
"""
Use secrets in a task
----------------------
This example explains how a secret can be accessed in a Flyte Task. Flyte provides different types of Secrets, as part of
.. _secrets:
Accessing Secrets
-----------------
What Is Secrets Injection?
##########################
Flyte supports running a wide variety of tasks; from containers to SQL queries and service calls. In order for Flyte-run
containers to request and access secrets, Flyte provides a native Secret construct.
For a simple task that launches a Pod, the flow will look something like this:
.. image:: https://mermaid.ink/img/eyJjb2RlIjoic2VxdWVuY2VEaWFncmFtXG4gICAgUHJvcGVsbGVyLT4-K1BsdWdpbnM6IENyZWF0ZSBLOHMgUmVzb3VyY2VcbiAgICBQbHVnaW5zLT4-LVByb3BlbGxlcjogUmVzb3VyY2UgT2JqZWN0XG4gICAgUHJvcGVsbGVyLT4-K1Byb3BlbGxlcjogU2V0IExhYmVscyAmIEFubm90YXRpb25zXG4gICAgUHJvcGVsbGVyLT4-K0FwaVNlcnZlcjogQ3JlYXRlIE9iamVjdCAoZS5nLiBQb2QpXG4gICAgQXBpU2VydmVyLT4-K1BvZCBXZWJob29rOiAvbXV0YXRlXG4gICAgUG9kIFdlYmhvb2stPj4rUG9kIFdlYmhvb2s6IExvb2t1cCBnbG9iYWxzXG4gICAgUG9kIFdlYmhvb2stPj4rUG9kIFdlYmhvb2s6IEluamVjdCBTZWNyZXQgQW5ub3RhdGlvbnMgKGUuZy4gSzhzLCBWYXVsdC4uLiBldGMuKVxuICAgIFBvZCBXZWJob29rLT4-LUFwaVNlcnZlcjogTXV0YXRlZCBQb2RcbiAgICBcbiAgICAgICAgICAgICIsIm1lcm1haWQiOnt9LCJ1cGRhdGVFZGl0b3IiOmZhbHNlfQ
:target: https://mermaid.ink/img/eyJjb2RlIjoic2VxdWVuY2VEaWFncmFtXG4gICAgUHJvcGVsbGVyLT4-K1BsdWdpbnM6IENyZWF0ZSBLOHMgUmVzb3VyY2VcbiAgICBQbHVnaW5zLT4-LVByb3BlbGxlcjogUmVzb3VyY2UgT2JqZWN0XG4gICAgUHJvcGVsbGVyLT4-K1Byb3BlbGxlcjogU2V0IExhYmVscyAmIEFubm90YXRpb25zXG4gICAgUHJvcGVsbGVyLT4-K0FwaVNlcnZlcjogQ3JlYXRlIE9iamVjdCAoZS5nLiBQb2QpXG4gICAgQXBpU2VydmVyLT4-K1BvZCBXZWJob29rOiAvbXV0YXRlXG4gICAgUG9kIFdlYmhvb2stPj4rUG9kIFdlYmhvb2s6IExvb2t1cCBnbG9iYWxzXG4gICAgUG9kIFdlYmhvb2stPj4rUG9kIFdlYmhvb2s6IEluamVjdCBTZWNyZXQgQW5ub3RhdGlvbnMgKGUuZy4gSzhzLCBWYXVsdC4uLiBldGMuKVxuICAgIFBvZCBXZWJob29rLT4-LUFwaVNlcnZlcjogTXV0YXRlZCBQb2RcbiAgICBcbiAgICAgICAgICAgICIsIm1lcm1haWQiOnt9LCJ1cGRhdGVFZGl0b3IiOmZhbHNlfQ
Where:
1. Flyte invokes a plugin to create the K8s object. This can be a Pod or a more complex CRD (e.g. Spark, PyTorch, etc.)
.. tip:: The plugin will ensure that labels and annotations are passed through to any Pod that will be spawned due to the creation of the CRD.
2. Flyte will apply labels and annotations that are referenced to all secrets the task is requesting access to.
3. Flyte will send a POST request to ApiServer to create the object.
4. Before persisting the Pod, ApiServer will invoke all registered Pod Webhooks. Flyte's Pod Webhook will be called.
5. Flyte Pod Webhook will then lookup globally mounted secrets for each of the requested secrets.
6. If found, Pod Webhook will mount them directly in the Pod. If not found, it will inject the appropriate annotations to load the secrets for K8s (or Vault or Confidant or any other secret management system plugin configured) into the Pod.
The webhook is included in all overlays in the Flytekit repo. The deployment file creates (mainly) two things; a Job and a Deployment.
1) flyte-pod-webhook-secrets Job: This job runs ``flytepropeller webhook init-certs`` command that issues self-signed CA Certificate as well as a derived TLS certificate and its private key. It stores them into a new secret ``flyte-pod-webhook-secret``.
2) flyte-pod-webhook Deployment: This deployment creates the Webhook pod which creates a MutatingWebhookConfiguration on startup. This serves as the registration contract with the ApiServer to know about the Webhook before it starts serving traffic.
How to Enable Secrets Injection
###############################
This feature is available in Flytekit v0.17.0+. This example explains how a secret can be accessed in a Flyte Task. Flyte provides different types of Secrets, as part of
SecurityContext. But, for users writing python tasks, you can only access ``secure secrets`` either as environment variable
or injected into a file.
"""

# %%
import os
import flytekit

Expand Down Expand Up @@ -49,10 +84,10 @@ def secret_task() -> str:
#
# In some cases you may have multiple secrets and sometimes, they maybe grouped as one secret in the SecretStore.
# For example, In Kubernetes secrets, it is possible to nest multiple keys under the same secret.
# Thus in this case the name would be the actual name of the nested secret, and the group would be the identifier for
# In this case, the name would be the actual name of the nested secret, and the group would be the identifier for
# the kubernetes secret.
#
# As an example, let us define 2 secrets username and password, defined in the group user_info
# As an example, define 2 secrets username and password, defined in the group user_info
USERNAME_SECRET = "username"
PASSWORD_SECRET = "password"

Expand All @@ -71,10 +106,10 @@ def user_info_task() -> (str, str):

# %%
# It is also possible to enforce Flyte to mount the secret as a file or an environment variable.
# The File type is useful This is for large secrets that do not fit in environment variables - typically asymmetric
# The File type is useful for large secrets that do not fit in environment variables - typically asymmetric
# keys (certs etc). Another reason may be that a dependent library necessitates that the secret be available as a file.
# In these scenarios you can specify the mount_requirement. In the following example we force the mounting to be
# and Env variable
# an Env variable
@task(secret_requests=[Secret(group=SECRET_GROUP, key=SECRET_NAME, mount_requirement=Secret.MountType.ENV_VAR)])
def secret_file_task() -> (str, str):
# SM here is a handle to the secrets manager
Expand All @@ -86,7 +121,7 @@ def secret_file_task() -> (str, str):


# %%
# You can use these tasks in your workflow as usual
# These tasks can be used in your workflow as usual
@workflow
def my_secret_workflow() -> (str, str, str, str, str):
x = secret_task()
Expand All @@ -96,7 +131,7 @@ def my_secret_workflow() -> (str, str, str, str, str):


# %%
# Simplest way to test the secret accessibility is to export the secret as an environment variable. There are some
# The simplest way to test Secret accessibility is to export the secret as an environment variable. There are some
# helper methods available to do so
from flytekit.testing import SecretsManager

Expand All @@ -111,3 +146,21 @@ def my_secret_workflow() -> (str, str, str, str, str):
assert z == "password_value"
assert f == sec.get_secrets_file(SECRET_GROUP, SECRET_NAME)
assert s == "value"

# %%
# Scaling the Webhook
# ###################
#
# Vertical Scaling
# =================
#
# To scale the Webhook to be able to process the number/rate of pods you need, you may need to configure a vertical `pod
# autoscaler <https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler>`_.
#
# Horizontal Scaling
# ==================
#
# The Webhook does not make any external API Requests in response to Pod mutation requests. It should be able to handle traffic
# quickly. For horizontal scaling, adding additional replicas for the Pod in the
# deployment should be sufficient. A single MutatingWebhookConfiguration object will be used, the same TLS certificate
# will be shared across the pods and the Service created will automatically load balance traffic across the available pods.

0 comments on commit f4210be

Please sign in to comment.