-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEVOPS-934: Fix UBI image labels in order to be able to pass Red Hat …
…pre-flight checks (#1812) * DEVOPS-934: Fix UBI image labels in order to be able to pass Red Hat pre-flight checks
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -35,7 +35,7 @@ RUN microdnf install -y yum findutils openssl \ | |
|
||
WORKDIR /opt/kube-bench/ | ||
|
||
ENV PATH=$PATH:/usr/local/mount-from-host/bin | ||
ENV PATH=$PATH:/usr/local/mount-from-host/bin | ||
|
||
COPY LICENSE /licenses/LICENSE | ||
COPY --from=build /go/bin/kube-bench /usr/local/bin/kube-bench | ||
|
@@ -53,14 +53,14 @@ ARG VCS_REF | |
ARG KUBEBENCH_VERSION | ||
|
||
LABEL org.label-schema.build-date=$BUILD_DATE \ | ||
org.label-schema.name="kube-bench" \ | ||
org.label-schema.vendor="Aqua Security Software Ltd." \ | ||
org.label-schema.version=$KUBEBENCH_VERSION \ | ||
org.label-schema.release=$KUBEBENCH_VERSION \ | ||
org.label-schema.summary="Aqua security server" \ | ||
org.label-schema.maintainer="[email protected]" \ | ||
org.label-schema.description="Run the CIS Kubernetes Benchmark tests" \ | ||
org.label-schema.url="https://github.com/aquasecurity/kube-bench" \ | ||
org.label-schema.vcs-ref=$VCS_REF \ | ||
org.label-schema.vcs-url="https://github.com/aquasecurity/kube-bench" \ | ||
org.label-schema.schema-version="1.0" | ||
org.label-schema.schema-version="1.0" \ | ||
vendor="Aqua Security Software Ltd." \ | ||
maintainer="Aqua Security Software Ltd." \ | ||
version=$KUBEBENCH_VERSION \ | ||
release=$KUBEBENCH_VERSION \ | ||
summary="Aqua Security Kube-bench." \ | ||
description="Run the CIS Kubernetes Benchmark tests" |