chart/operator/templates/java-agent-configmap.yaml (11 lines of code) (raw):
{{- if .Values.webhook.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "operator.fullname" . | trunc (int (sub 63 (len "-java-agent-configmap"))) | printf "%s-java-agent-configmap" }}
namespace: {{ .Release.Namespace }}
data:
agent.config: |-
# The service name in UI
agent.service_name=${SW_AGENT_NAME:Your_ApplicationName}
# Backend service addresses.
collector.backend_service=${SW_AGENT_COLLECTOR_BACKEND_SERVICES:127.0.0.1:11800}
# Please refer to https://skywalking.apache.org/docs/skywalking-java/latest/en/setup/service-agent/java-agent/configurations/#table-of-agent-configuration-properties to get more details.
{{- end }}