Skip to content

Commit

Permalink
Merge branch 'main' of github.com:kubeshop/tracetest-cloud-charts
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar committed Sep 30, 2024
2 parents 7737f97 + 49afefa commit 85abd9f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/tracetest-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ 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: v1.4.0
version: v1.5.0
# 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.
Expand Down
11 changes: 7 additions & 4 deletions charts/tracetest-agent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,20 @@ spec:
{{- if .Values.agent.skipVerify }}
"--skip-verify",
{{- end}}

"--mode",
"verbose"
]
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- if .Values.agent.apiKey }}
env:
- name: TRACETEST_MODE
value: "verbose"
{{- if .Values.agent.apiKey }}
- name: TRACETEST_API_KEY
valueFrom:
secretKeyRef:
name: {{ include "tracetest-agent.fullname" . }}-secret
key: apiKey
{{- end }}
{{- range $key, $value := .env }}
- name: {{ $key }}
value: "{{ $value }}"
{{- end }}
4 changes: 3 additions & 1 deletion charts/tracetest-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ agent:
serverURL: "https://app.tracetest.io"
skipVerify: false

resources: {}
resources: {}

env: {}
2 changes: 1 addition & 1 deletion charts/tracetest-onprem/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: tracetest-onprem
description: A Helm chart for tracetest On Prem
type: application
version: v1.102.0
version: v1.103.0
dependencies:
- name: tracetest-frontend
version: v1.13.0
Expand Down

0 comments on commit 85abd9f

Please sign in to comment.