Skip to content

Commit

Permalink
Merge pull request #221 from Tricentis/release-2024-3-session
Browse files Browse the repository at this point in the history
Update Session helm chart
  • Loading branch information
irunets authored Oct 18, 2024
2 parents c90c9e1 + 70e753d commit 903cefb
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Charts/qtest-session/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ dependencies:
maintainers:
- name: byangtri
email: [email protected]
- name: liemng
email: [email protected]
home: https://github.com/Tricentis-qTest/qtest-chart.git
kubeVersion: ">=1.24.0-0"
# 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: 1.5.4
version: 1.6.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
2 changes: 1 addition & 1 deletion Charts/qtest-session/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ data:
qTestSessionPort: "{{ .Values.service.targetHttpsPort }}"
{{- else }}
qTestSessionPort: "{{ .Values.service.targetPort }}"
{{- end -}}
{{- end -}}
17 changes: 16 additions & 1 deletion Charts/qtest-session/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,16 @@ spec:
configMapKeyRef:
name: qtest-session-configmap
key: qTestSessionDBPort
- name: SESSION_RO_DB_PW
valueFrom:
secretKeyRef:
name: {{ .Values.secrets.name }}
key: sessionReadOnly
- name: INSIGHTS_RO_DB_PW
valueFrom:
secretKeyRef:
name: {{ .Values.secrets.name }}
key: insightsReadOnly
{{- if .Values.qTestSession.qTestSessionCustomSchemaEnable }}
- name: DATABASE_SCHEMA_SESSION
valueFrom:
Expand Down Expand Up @@ -228,7 +238,12 @@ spec:
configMapKeyRef:
name: qtest-session-configmap
key: qTestSessionSSLKey
{{- end -}}
{{- end }}
- name: NODE_OPTIONS
valueFrom:
configMapKeyRef:
name: qtest-session-configmap
key: qTestSessionNodeOptions
{{- with .Values.extraEnv }}
{{ toYaml . | indent 12 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion Charts/qtest-session/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ vpaAutoscaling:
updateMode: "Off"
resourcePolicy:
containerPolicies:
- containerName: "*"
- containerName: '*'
controlledValues: RequestsAndLimits
# HPA values
autoscaling:
Expand Down

0 comments on commit 903cefb

Please sign in to comment.