This patch enables end users to configure external plugins in the spire-server config. Unsupported internal plugins are not able to be set. --------- Signed-off-by: Kevin Fox <[email protected]> Signed-off-by: kfox1111 <[email protected]> Co-authored-by: Edwin Buck <[email protected]> Co-authored-by: Faisal Memon <[email protected]>
10 lines
348 B
Docker
10 lines
348 B
Docker
FROM alpine
|
|
RUN \
|
|
cd /tmp && \
|
|
wget -O plugin.tar.gz https://github.com/boxboat/spire-tpm-plugin/releases/download/v1.3.3/spire_tpm_plugin_tpm_attestor_agent_linux_amd64_v1.3.3.tar.gz && \
|
|
tar -zxvf plugin.tar.gz && \
|
|
mv tpm_attestor_agent /
|
|
|
|
FROM ghcr.io/spiffe/spire-server:1.5.4
|
|
COPY --from=0 /tpm_attestor_agent /bin/tpm_attestor_agent
|