-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michael Wilkerson <[email protected]>
- Loading branch information
1 parent
0bdb2e5
commit c4d1548
Showing
1 changed file
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,13 +31,17 @@ ARG VERSION | |
ARG TARGETARCH | ||
ARG TARGETOS | ||
|
||
LABEL name=${BIN_NAME} \ | ||
maintainer="Team Consul Kubernetes <[email protected]>" \ | ||
vendor="HashiCorp" \ | ||
version=${VERSION} \ | ||
release=${VERSION} \ | ||
summary="rollouts-plugin-trafficrouter-consul is a plugin for Argo Rollouts." \ | ||
description="rollouts-plugin-trafficrouter-consul is a plugin for Argo Rollouts." | ||
LABEL maintainer="Team Consul Kubernetes <[email protected]>" \ | ||
org.opencontainers.image.title=${BIN_NAME} \ | ||
org.opencontainers.image.description="rollouts-plugin-trafficrouter-consul is a plugin for Argo Rollouts." \ | ||
org.opencontainers.image.authors="Team Consul Kubernetes <[email protected]>" \ | ||
org.opencontainers.image.version=${PRODUCT_VERSION} \ | ||
org.opencontainers.image.revision=${PRODUCT_REVISION} \ | ||
org.opencontainers.image.vendor="HashiCorp" \ | ||
org.opencontainers.image.licenses="BUSL-1.1" | ||
|
||
RUN mkdir -p /usr/share/doc/plugin | ||
COPY LICENSE /usr/share/doc/plugin/LICENSE.txt | ||
|
||
# Set ARGs as ENV so that they can be used in ENTRYPOINT/CMD | ||
ENV BIN_NAME=${BIN_NAME} | ||
|