| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- #!/usr/bin/env sh
- #
- # This script builds Tailscale container images using
- # github.com/tailscale/mkctr.
- # By default the images will be tagged with the current version and git
- # hash of this repository as produced by ./cmd/mkversion.
- # This is the image build mechanim used to build the official Tailscale
- # container images.
- #
- # If you want to build local images for testing, you can use make, which provides few convenience wrappers around this script.
- #
- # To build a Tailscale image and push to the local docker registry:
- # $ REPO=local/tailscale TAGS=v0.0.1 PLATFORM=local make publishdevimage
- #
- # To build a Tailscale image and push to a remote docker registry:
- #
- # $ REPO=<your-registry>/<your-repo>/tailscale TAGS=v0.0.1 make publishdevimage
- set -eu
- # Use the "go" binary from the "tool" directory (which is github.com/tailscale/go)
- export PATH="$PWD"/tool:"$PATH"
- eval "$(./build_dist.sh shellvars)"
- DEFAULT_TARGET="client"
- DEFAULT_TAGS="v${VERSION_SHORT},v${VERSION_MINOR}"
- DEFAULT_BASE="tailscale/alpine-base:3.22"
- # Set a few pre-defined OCI annotations. The source annotation is used by tools such as Renovate that scan the linked
- # Github repo to find release notes for any new image tags. Note that for official Tailscale images the default
- # annotations defined here will be overriden by release scripts that call this script.
- # https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
- DEFAULT_ANNOTATIONS="org.opencontainers.image.source=https://github.com/tailscale/tailscale/blob/main/build_docker.sh,org.opencontainers.image.vendor=Tailscale"
- PUSH="${PUSH:-false}"
- TARGET="${TARGET:-${DEFAULT_TARGET}}"
- TAGS="${TAGS:-${DEFAULT_TAGS}}"
- BASE="${BASE:-${DEFAULT_BASE}}"
- PLATFORM="${PLATFORM:-}" # default to all platforms
- FILES="${FILES:-}" # default to no extra files
- # OCI annotations that will be added to the image.
- # https://github.com/opencontainers/image-spec/blob/main/annotations.md
- ANNOTATIONS="${ANNOTATIONS:-${DEFAULT_ANNOTATIONS}}"
- case "$TARGET" in
- client)
- DEFAULT_REPOS="tailscale/tailscale"
- REPOS="${REPOS:-${DEFAULT_REPOS}}"
- go run github.com/tailscale/mkctr \
- --gopaths="\
- tailscale.com/cmd/tailscale:/usr/local/bin/tailscale, \
- tailscale.com/cmd/tailscaled:/usr/local/bin/tailscaled, \
- tailscale.com/cmd/containerboot:/usr/local/bin/containerboot" \
- --ldflags="\
- -X tailscale.com/version.longStamp=${VERSION_LONG} \
- -X tailscale.com/version.shortStamp=${VERSION_SHORT} \
- -X tailscale.com/version.gitCommitStamp=${VERSION_GIT_HASH}" \
- --base="${BASE}" \
- --tags="${TAGS}" \
- --gotags="ts_kube,ts_package_container" \
- --repos="${REPOS}" \
- --push="${PUSH}" \
- --target="${PLATFORM}" \
- --annotations="${ANNOTATIONS}" \
- --files="${FILES}" \
- /usr/local/bin/containerboot
- ;;
- k8s-operator)
- DEFAULT_REPOS="tailscale/k8s-operator"
- REPOS="${REPOS:-${DEFAULT_REPOS}}"
- go run github.com/tailscale/mkctr \
- --gopaths="tailscale.com/cmd/k8s-operator:/usr/local/bin/operator" \
- --ldflags="\
- -X tailscale.com/version.longStamp=${VERSION_LONG} \
- -X tailscale.com/version.shortStamp=${VERSION_SHORT} \
- -X tailscale.com/version.gitCommitStamp=${VERSION_GIT_HASH}" \
- --base="${BASE}" \
- --tags="${TAGS}" \
- --gotags="ts_kube,ts_package_container" \
- --repos="${REPOS}" \
- --push="${PUSH}" \
- --target="${PLATFORM}" \
- --annotations="${ANNOTATIONS}" \
- --files="${FILES}" \
- /usr/local/bin/operator
- ;;
- k8s-nameserver)
- DEFAULT_REPOS="tailscale/k8s-nameserver"
- REPOS="${REPOS:-${DEFAULT_REPOS}}"
- go run github.com/tailscale/mkctr \
- --gopaths="tailscale.com/cmd/k8s-nameserver:/usr/local/bin/k8s-nameserver" \
- --ldflags=" \
- -X tailscale.com/version.longStamp=${VERSION_LONG} \
- -X tailscale.com/version.shortStamp=${VERSION_SHORT} \
- -X tailscale.com/version.gitCommitStamp=${VERSION_GIT_HASH}" \
- --base="${BASE}" \
- --tags="${TAGS}" \
- --gotags="ts_kube,ts_package_container" \
- --repos="${REPOS}" \
- --push="${PUSH}" \
- --target="${PLATFORM}" \
- --annotations="${ANNOTATIONS}" \
- --files="${FILES}" \
- /usr/local/bin/k8s-nameserver
- ;;
- tsidp)
- DEFAULT_REPOS="tailscale/tsidp"
- REPOS="${REPOS:-${DEFAULT_REPOS}}"
- go run github.com/tailscale/mkctr \
- --gopaths="tailscale.com/cmd/tsidp:/usr/local/bin/tsidp" \
- --ldflags=" \
- -X tailscale.com/version.longStamp=${VERSION_LONG} \
- -X tailscale.com/version.shortStamp=${VERSION_SHORT} \
- -X tailscale.com/version.gitCommitStamp=${VERSION_GIT_HASH}" \
- --base="${BASE}" \
- --tags="${TAGS}" \
- --gotags="ts_package_container" \
- --repos="${REPOS}" \
- --push="${PUSH}" \
- --target="${PLATFORM}" \
- --annotations="${ANNOTATIONS}" \
- --files="${FILES}" \
- /usr/local/bin/tsidp
- ;;
- k8s-proxy)
- DEFAULT_REPOS="tailscale/k8s-proxy"
- REPOS="${REPOS:-${DEFAULT_REPOS}}"
- go run github.com/tailscale/mkctr \
- --gopaths="tailscale.com/cmd/k8s-proxy:/usr/local/bin/k8s-proxy" \
- --ldflags=" \
- -X tailscale.com/version.longStamp=${VERSION_LONG} \
- -X tailscale.com/version.shortStamp=${VERSION_SHORT} \
- -X tailscale.com/version.gitCommitStamp=${VERSION_GIT_HASH}" \
- --base="${BASE}" \
- --tags="${TAGS}" \
- --gotags="ts_kube,ts_package_container" \
- --repos="${REPOS}" \
- --push="${PUSH}" \
- --target="${PLATFORM}" \
- --annotations="${ANNOTATIONS}" \
- --files="${FILES}" \
- /usr/local/bin/k8s-proxy
- ;;
- *)
- echo "unknown target: $TARGET"
- exit 1
- ;;
- esac
|