-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (24 loc) · 768 Bytes
/
Makefile
File metadata and controls
28 lines (24 loc) · 768 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
# Copyright (c) 2019 The Jaeger Authors.
# SPDX-License-Identifier: Apache-2.0
.PHONY: lint
lint:
ct lint --config ct.yaml
.PHONY: test
test:
ct install --config ct.yaml
.PHONY: test-jaeger-env-vars
test-jaeger-env-vars:
ct install --config ct.yaml \
--charts charts/jaeger \
--helm-extra-set-args " \
--set jaeger.extraEnv[0].name=OTEL_TRACES_SAMPLER \
--set jaeger.extraEnv[0].value=always_off"
.PHONY: test-jaeger-extra-ports
test-jaeger-extra-ports:
ct install --config ct.yaml \
--charts charts/jaeger \
--helm-extra-set-args " \
--set jaeger.service.extraPorts[0].name=custom-http \
--set jaeger.service.extraPorts[0].port=18080 \
--set jaeger.service.extraPorts[0].targetPort=18080 \
--set jaeger.service.extraPorts[0].protocol=TCP"