From bfcaf538bb000d7eb72975d234a95f566da54715 Mon Sep 17 00:00:00 2001 From: Aditya Rajan Date: Thu, 25 Nov 2021 17:10:50 +0530 Subject: api: allow build api to accept secrets Following commit makes sure that `build` api can accept external secret and allows currently `NOOP` `podman-remote build -t tag --secret id=mysecret,src=/path/on/remote` to become functional. Just like `docker` following api is a hidden field and only exposed to `podman-remote` but could document it if it needs exposed on `swagger`. Signed-off-by: Aditya Rajan --- pkg/bindings/images/build.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'pkg/bindings') diff --git a/pkg/bindings/images/build.go b/pkg/bindings/images/build.go index 3b0bebe9f..9c2e3e6b2 100644 --- a/pkg/bindings/images/build.go +++ b/pkg/bindings/images/build.go @@ -116,6 +116,13 @@ func Build(ctx context.Context, containerFiles []string, options entities.BuildO } params.Add("dnsservers", c) } + if secrets := options.CommonBuildOpts.Secrets; len(secrets) > 0 { + c, err := jsoniter.MarshalToString(secrets) + if err != nil { + return nil, err + } + params.Add("secrets", c) + } if dnsoptions := options.CommonBuildOpts.DNSOptions; len(dnsoptions) > 0 { c, err := jsoniter.MarshalToString(dnsoptions) if err != nil { -- cgit v1.2.3-54-g00ecf