diff --git a/charts/qpoint-tap/Chart.yaml b/charts/qpoint-tap/Chart.yaml index 40918b5..2d931ac 100644 --- a/charts/qpoint-tap/Chart.yaml +++ b/charts/qpoint-tap/Chart.yaml @@ -8,10 +8,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.0.5 +version: 0.0.6 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v0.2.6" +appVersion: "v0.2.7" diff --git a/charts/qpoint-tap/templates/deployment.yaml b/charts/qpoint-tap/templates/daemonset.yaml similarity index 95% rename from charts/qpoint-tap/templates/deployment.yaml rename to charts/qpoint-tap/templates/daemonset.yaml index 346edf6..fb13747 100644 --- a/charts/qpoint-tap/templates/deployment.yaml +++ b/charts/qpoint-tap/templates/daemonset.yaml @@ -59,6 +59,12 @@ spec: value: "{{ .Values.logEncoding }}" - name: TINI_SUBREAPER value: "1" + {{- if .Values.extraEnv }} + {{- range .Values.extraEnv }} + - name: {{ .name }} + value: {{ .value | quote }} + {{- end }} + {{- end }} ports: - name: status containerPort: {{ .Values.status.port }} diff --git a/charts/qpoint-tap/values.yaml b/charts/qpoint-tap/values.yaml index 364be4b..c9bb7fe 100644 --- a/charts/qpoint-tap/values.yaml +++ b/charts/qpoint-tap/values.yaml @@ -111,3 +111,8 @@ config: "" # jwt_hmac_key: "qwertyuiopasdfghjklzxcvbnm123456" # default_domain_action: ALLOW # endpoints: [] + +# Additional environment variables for the DaemonSet +# extraEnv: +# - name: BPF_TRACE +# value: "mod:openssl,mod:protocol,exe.contains:curl"