Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Launch version "2024.2.0" #204

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Charts/qtest-launch/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ kubeVersion: ">=1.24.0-0"
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 1.4.1
version: 1.4.2
# 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: "2024.1.3"
appVersion: "2024.2.0"
1 change: 1 addition & 0 deletions Charts/qtest-launch/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ data:
qTestLaunchDBUserName: "{{ .Values.qTestLaunch.qTestLaunchDBUserName }}"
qTestLaunchDBHostName: "{{ .Values.qTestLaunch.qTestLaunchDBHostName }}"
qTestLaunchDBPort: "{{ .Values.qTestLaunch.qTestLaunchDBPort }}"
qTestLaunchDeploymentEnv: "{{ .Values.qTestLaunch.qTestLaunchDeploymentEnv }}"
qTestLaunchRootURL: "{{ .Values.qTestLaunch.qTestLaunchRootURL }}"
qTestLaunchQTestURL: "{{ .Values.qTestLaunch.qTestLaunchQTestURL }}"
qTestLaunchTCPWD: "{{ .Values.qTestLaunch.qTestLaunchTCPWD }}"
Expand Down
5 changes: 5 additions & 0 deletions Charts/qtest-launch/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ spec:
configMapKeyRef:
name: qtest-launch-configmap
key: qTestLaunchDBName
- name: DEPLOYMENT_ENV
valueFrom:
configMapKeyRef:
name: qtest-launch-configmap
key: qTestLaunchDeploymentEnv
- name: LAUNCH_DB_USERNAME
valueFrom:
configMapKeyRef:
Expand Down
3 changes: 2 additions & 1 deletion Charts/qtest-launch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ secrets:
image:
repository: qasymphony/launch
pullPolicy: IfNotPresent
tag: "2024.1.3"
tag: "2024.2.0"
imageCredentials:
enabled: false
# name: ""
Expand Down Expand Up @@ -75,6 +75,7 @@ qTestLaunch:
qTestLaunchDBSSLMountPath: "/etc/ssl"
qTestLaunchDBSSL: ""
qTestLaunchDBCRT: ""
qTestLaunchDeploymentEnv: "op"
#### Ingress/IngressClass (> K8s 1.24-1.30+) #####
ingressClass:
enabled: false
Expand Down
Loading