43 lines
2.0 KiB
Makefile
43 lines
2.0 KiB
Makefile
# Copyright 2023 The cert-manager Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
.PHONY: trivy-scan-all
|
|
## trivy-scan-all runs a scan using Trivy (https://github.com/aquasecurity/trivy)
|
|
## against all containers that cert-manager builds. If one of the containers
|
|
## fails a scan, then all scans will be aborted; if you need to check a specific
|
|
## container, use "trivy-scan-<name>", e.g. "make trivy-scan-controller"
|
|
##
|
|
## @category Development
|
|
trivy-scan-all: trivy-scan-controller trivy-scan-acmesolver trivy-scan-webhook trivy-scan-cainjector trivy-scan-startupapicheck
|
|
|
|
.PHONY: trivy-scan-controller
|
|
trivy-scan-controller: $(bin_dir)/containers/cert-manager-controller-linux-amd64.tar | $(NEEDS_TRIVY)
|
|
$(TRIVY) image --input $< --format json --exit-code 1
|
|
|
|
.PHONY: trivy-scan-acmesolver
|
|
trivy-scan-acmesolver: $(bin_dir)/containers/cert-manager-acmesolver-linux-amd64.tar | $(NEEDS_TRIVY)
|
|
$(TRIVY) image --input $< --format json --exit-code 1
|
|
|
|
.PHONY: trivy-scan-webhook
|
|
trivy-scan-webhook: $(bin_dir)/containers/cert-manager-webhook-linux-amd64.tar | $(NEEDS_TRIVY)
|
|
$(TRIVY) image --input $< --format json --exit-code 1
|
|
|
|
.PHONY: trivy-scan-cainjector
|
|
trivy-scan-cainjector: $(bin_dir)/containers/cert-manager-cainjector-linux-amd64.tar | $(NEEDS_TRIVY)
|
|
$(TRIVY) image --input $< --format json --exit-code 1
|
|
|
|
.PHONY: trivy-scan-startupapicheck
|
|
trivy-scan-startupapicheck: $(bin_dir)/containers/cert-manager-startupapicheck-linux-amd64.tar | $(NEEDS_TRIVY)
|
|
$(TRIVY) image --input $< --format json --exit-code 1
|