We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eb61b8 commit 3b07a30Copy full SHA for 3b07a30
kubernetes_platform/python/README.md
@@ -30,7 +30,7 @@ from kfp import kubernetes
30
@dsl.component
31
def print_secret():
32
import os
33
- print(os.environ['my-secret'])
+ print(os.environ['SECRET_VAR'])
34
35
@dsl.pipeline
36
def pipeline():
@@ -85,7 +85,7 @@ from kfp import kubernetes
85
86
def print_config_map():
87
88
- print(os.environ['my-cm'])
+ print(os.environ['CM_VAR'])
89
90
91
0 commit comments