This build of the Instana agent includes all sensors. It requires proxy settings only for egress access to the ${INSTANA_AGENT_ENDPOINT}
, which may either be for your self-hosted Instana installation or for the Instana SaaS.
Note: Needs Docker 18.09 or higher. Also Experimental features need to be enabled and Buildx CLI plugin needs to be installed.
export TARGETPLATFORM=linux/s390x
export DOWNLOAD_KEY=my-key
echo "${DOWNLOAD_KEY}" > ${HOME}/.INSTANA_DOWNLOAD_KEY
docker buildx build --no-cache \
--secret id=DOWNLOAD_KEY,src=${HOME}/.INSTANA_DOWNLOAD_KEY \
--platform="${TARGETPLATFORM}" \
--build-arg "TARGETPLATFORM=${TARGETPLATFORM}" \
-t containers.instana.io/instana/release/agent/static \
.
rm -f ~/.INSTANA_DOWNLOAD_KEY
Supported values of <PLATFORM>
:
linux/amd64
linux/arm64
linux/s390x
Note: For backwards compatibility reasons, the <DOWNLOAD_KEY>
can also be passed via the FTP_PROXY
build argument.
The Instana Agent static Docker image can be found on containers.instana.io
and can be downloaded using the following commands:
docker login containers.instana.io -u _ -p <agent_key>
docker pull containers.instana.io/instana/release/agent/static:latest