forked from openshift/splunk-forwarder-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (25 loc) · 995 Bytes
/
Makefile
File metadata and controls
37 lines (25 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FIPS_ENABLED=true
include boilerplate/generated-includes.mk
.PHONY: boilerplate-update
boilerplate-update:
@boilerplate/update
SHELL := /usr/bin/env bash
FORWARDER_IMAGE_TAG ?= 9.0.0.1-9e907cedecb1-72787d0
FORWARDER_NAME=splunk-forwarder
FORWARDER_IMAGE_URI=$(IMAGE_REGISTRY)/$(IMAGE_REPOSITORY)/$(FORWARDER_NAME):$(FORWARDER_IMAGE_TAG)
HEAVYFORWARDER_NAME=splunk-heavyforwarder
HEAVYFORWARDER_IMAGE_URI=$(IMAGE_REGISTRY)/$(IMAGE_REPOSITORY)/$(HEAVYFORWARDER_NAME):$(FORWARDER_IMAGE_TAG)
## Convenience targets for local dev. Duplicates are for consistent naming.
.PHONY: build-operator
build-operator: docker-build
.PHONY: push-operator
push-operator: docker-push
.PHONY: image-digests
image-digests:
./hack/populate-image-digests.sh "$(FORWARDER_IMAGE_URI)" "$(HEAVYFORWARDER_IMAGE_URI)"
.PHONY: vuln-check
vuln-check: build-operator
./hack/check-image-against-osd-sre-clair.sh $(OPERATOR_IMAGE_URI)
.PHONY: image-update
image-update:
./hack/update-image-vars.sh $(SFI_UPDATE)