Skip to content

Commit

Permalink
Merge pull request #111 from qpoint-io/marc-barry/update-qtap
Browse files Browse the repository at this point in the history
Update Qtap to v0.2.7 and support extra environment variables.
  • Loading branch information
marc-barry authored Sep 6, 2024
2 parents 06bcec0 + 8a24686 commit 2199ab8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/qpoint-tap/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
5 changes: 5 additions & 0 deletions charts/qpoint-tap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 2199ab8

Please sign in to comment.