Makefile.in (46 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you 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. # comma := , .EXPORT_ALL_VARIABLES: DEBUG ?= false DOCKER_BUILDKIT ?= 1 HUB ?= ghcr.io/apache/skywalking-showcase TAG ?= $(shell git rev-parse --short HEAD) ES_IMAGE ?= docker.elastic.co/elasticsearch/elasticsearch-oss ES_IMAGE_TAG ?= 7.10.2 SW_OAP_IMAGE ?= ghcr.io/apache/skywalking/oap SW_OAP_IMAGE_TAG ?= 0949db406dfc49b2ee8e32444097d302e7d42a1d SW_UI_IMAGE ?= ghcr.io/apache/skywalking/ui SW_UI_IMAGE_TAG ?= 0949db406dfc49b2ee8e32444097d302e7d42a1d SW_CLI_IMAGE ?= ghcr.io/apache/skywalking-cli/skywalking-cli:0883266bfaa36612927b69e35781b64ea181758d SW_EVENT_EXPORTER_IMAGE ?= ghcr.io/apache/skywalking-kubernetes-event-exporter/skywalking-kubernetes-event-exporter:8a012a3f968cb139f817189afb9b3748841bba22 SW_AGENT_JAVA_IMAGE ?= ghcr.io/apache/skywalking-java/skywalking-java:81afeddd084d614c1cfcbcc7c24d0238e9aaab25-java8 SW_AGENT_GO_IMAGE ?= ghcr.io/apache/skywalking-go/skywalking-go:637845b76c9949a495a14ecf0e7e2f0e385701c8-go1.18 SW_AGENT_NODEJS_BACKEND_VERSION ?= 59ef1aed6a404e2e8afffbb4b81ea849ae4f3026 SW_AGENT_NODEJS_FRONTEND_VERSION ?= 1e31bd17dcebb616163d848fc435f3a2d4822fb8 SW_SATELLITE_IMAGE ?= ghcr.io/apache/skywalking-satellite/skywalking-satellite SW_SATELLITE_IMAGE_TAG ?= v38a86a5408c30b805bce2b5c79b7e8000e917a68 SW_ROVER_IMAGE ?= ghcr.io/apache/skywalking-rover/skywalking-rover:9da447851549b20d12e762d8e180be47f7b7b986 SWCK_OPERATOR_IMAGE ?= docker.io/apache/skywalking-swck SWCK_OPERATOR_IMAGE_TAG ?= v0.7.0 SW_PLUGIN_URL ?= https://github.com/apache/skywalking-grafana-plugins/releases/download/v0.1.0/skywalking-datasource-0.1.0.zip GRAFANA_IMAGE ?= grafana/grafana:9.5.2 OTEL_COLLECTOR_IMAGE ?= otel/opentelemetry-collector OTEL_COLLECTOR_IMAGE_TAG ?= 0.72.0 # ALL variables should be listed above ^^ EXPORTED_VARS := $(filter-out <%,$(.VARIABLES))