dosubot[bot] commented on issue #33015:
URL: https://github.com/apache/superset/issues/33015#issuecomment-2783198916
<!-- Answer -->
To check the Superset version in a Helm chart deployment, you can look at
the `values.yaml` file or the `deployment.yaml` template in your Helm chart
configuration:
1. **`values.yaml` File**: This file often contains the version information
for the Superset image. Look for the `image.tag` entry, which specifies the
version of the Superset image being used.
2. **`deployment.yaml` Template**: In the Helm chart's
`templates/deployment.yaml`, the version is typically defined in the `image`
section of the `containers` specification. It uses the `image.tag` value, which
defaults to `.Chart.AppVersion` if not explicitly set:
```yaml
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default
.Chart.AppVersion }}"
```
This means the version is either specified directly in
`.Values.image.tag` or defaults to the application version specified in the
chart metadata (`.Chart.AppVersion`)
<sup>[[1]](https://github.com/apache/superset/blob/master/helm/superset/templates/deployment.yaml)</sup>.
By checking these files, you can determine the version of Superset being
deployed with your Helm chart.
<!-- Dosu Comment Footer -->
*To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
---
<sup>Help Dosu learn! Give it feedback: [Great
Response](https://app.dosu.dev/response-feedback/e56f8b6b-74e5-4c9d-b2a4-ed6a9f3f80a5?feedback_type=great_response)
| [Irrelevant
Answer](https://app.dosu.dev/response-feedback/e56f8b6b-74e5-4c9d-b2a4-ed6a9f3f80a5?feedback_type=irrelevant_answer)
| [Incorrect
Sources](https://app.dosu.dev/response-feedback/e56f8b6b-74e5-4c9d-b2a4-ed6a9f3f80a5?feedback_type=incorrect_sources)
| [Too
Verbose](https://app.dosu.dev/response-feedback/e56f8b6b-74e5-4c9d-b2a4-ed6a9f3f80a5?feedback_type=too_verbose)
|
[Hallucination](https://app.dosu.dev/response-feedback/e56f8b6b-74e5-4c9d-b2a4-ed6a9f3f80a5?feedback_type=hallucination)
| [Bug
Report](https://app.dosu.dev/response-feedback/e56f8b6b-74e5-4c9d-b2a4-ed6a9f3f80a5?feedback_type=bug_report)
|
[Other](https://app.dosu.dev/response-feedback/e56f8b6b-74e5-4c9d-b2a4-ed6a9f3f80a5?feedback_type=other)</sup>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]