-
Notifications
You must be signed in to change notification settings - Fork 788
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement RUN secrets for buildah bud #3177
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ashley-cui The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
5df2ed2
to
30d545e
Compare
Signed-off-by: Ashley Cui <acui@redhat.com>
rename secrets to subscriptions and remove unused subscription package Signed-off-by: Ashley Cui <acui@redhat.com>
34d08ee
to
99076ab
Compare
Really nice work @ashley-cui . Couple of questions, most likely to educate me more than anything else. |
@ashley-cui if you can make that last suggested tweak to the man page, I thnk this is GTG |
Add support for secrets. Secrets is a two-part flag that allows secret files to be accessed for a certain RUN instruction, but not any other instructions, as well as now showing up in the final image. Signed-off-by: Ashley Cui <acui@redhat.com>
LGTM |
1 similar comment
LGTM |
/lgtm |
What type of PR is this?
/kind feature
What this PR does / why we need it:
Add support for secrets. Secrets is a two-part flag that allows secret files to be accessed for a certain RUN instruction, but not any other instructions, as well as now showing up in the final image.
How to verify it
buildah bud --secret id=mysecret,src=secret.txt
RUN --mount=type=secret,id=mysecret
Which issue(s) this PR fixes:
Fixes: #1684