- name: test
image: **/**
environment:
TEST:
from_secret: test
commands:
- env
...
TEST: ****
...
The secret all are masked, is there a way to expose them?
- name: test
image: **/**
environment:
TEST:
from_secret: test
commands:
- env
...
TEST: ****
...
The secret all are masked, is there a way to expose them?
The secret all are masked, is there a way to expose them?
the secrets are automatically masked in the output. this is not something that can be disabled.
How to use these env var?
sed -e "s/r/${TEST}/" ./test.yml > ./test1.yml
out: sed -e "s/r//" ./test.yml > ./test1.yml
The var is empty
Thank you for reply.
The problem solved.