File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 51
51
VERSION =${DEFAULT_VERSION}
52
52
endif
53
53
54
+ DOCKER_IMAGE? =docker.elastic.co/fleet-server/fleet-server
54
55
DOCKER_PLATFORMS ?= linux/amd64 linux/arm64
55
56
# defing the docker image tag used for stand-alone fleet-server images
56
57
# only want to define the tag if none is specified, this allows an invocation like
57
58
# FIPS=true make test-e2e
58
59
# to use a tag like X.Y.Z-fips and not X.Y.Z-fips-fips as the test-e2e target calls into make
59
- # TODO: We should change FIPS stand-alone/e2e images to use fleet-server-fips:TAG instead of fleet-server:TAG-fips
60
60
ifndef DOCKER_IMAGE_TAG
61
61
DOCKER_IMAGE_TAG? =${VERSION}
62
62
ifeq "${DEV}" "true"
63
63
DOCKER_IMAGE_TAG: =${DOCKER_IMAGE_TAG}-dev
64
64
endif
65
- ifeq "${FIPS}" "true"
66
- DOCKER_IMAGE_TAG: =${DOCKER_IMAGE_TAG}-fips
67
- endif
68
65
endif
69
- DOCKER_IMAGE? =docker.elastic.co/fleet-server/fleet-server
70
66
71
67
PLATFORM_TARGETS =$(addprefix release-, $(PLATFORMS ) )
72
68
COVER_TARGETS =$(addprefix cover-, $(PLATFORMS ) )
@@ -95,6 +91,7 @@ GOFIPSEXPERIMENT?=
95
91
FIPSSUFFIX =
96
92
ifeq "${FIPS}" "true"
97
93
BUILDER_IMAGE =fleet-server-fips-builder:${GO_VERSION}
94
+ DOCKER_IMAGE: =docker.elastic.co/fleet-server/fleet-server-fips
98
95
STANDALONE_DOCKERFILE =Dockerfile.fips
99
96
PLATFORMS = linux/amd64 linux/arm64
100
97
gobuildtags += requirefips
You can’t perform that action at this time.
0 commit comments