EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit f3e7c1de authored by Lubomir Dolezal's avatar Lubomir Dolezal
Browse files

export secrets as env variables also for steps before container runs

parent 78ae74d7
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,8 @@ file_env() {
export ${var}=${val}
EOF
echo "the value of variable ${var} is set" >&2
# make them also available in preparatory steps until container starts
export ${var}=${val}
unset "$fileVar"
}
......
......@@ -32,6 +32,8 @@ file_env() {
export ${var}=${val}
EOF
echo "the value of variable ${var} is set" >&2
# make them also available in preparatory steps until container starts
export ${var}=${val}
unset "$fileVar"
}
......
......@@ -30,6 +30,8 @@ file_env() {
export ${var}=${val}
EOF
echo "the value of variable ${var} is set" >&2
# make them also available in preparatory steps until container starts
export ${var}=${val}
unset "$fileVar"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment