chenyulin0719 commented on PR #452:
URL: https://github.com/apache/yunikorn-site/pull/452#issuecomment-2295808375
Sorry for the late review.
Instead of providing a custom.yml, I would prefer to use a single command.
EX:
```
VERSION=1.5.2
helm install yunikorn yunikorn/yunikorn --namespace yunikorn \
--set image.tag=scheduler-${VERSION} \
--set pluginImage.tag=scheduler-plugin-${VERSION}
--set admissionController.image.tag=admission-${VERSION} \
--set web.image.tag=web-${VERSION}
```
The better solution is to extract variable `version` in helm's values.yml,
so we could use:
```
VERSION=1.5.2
helm install yunikorn yunikorn/yunikorn --namespace yunikorn \
--set version=${VERSION}
```
If anyone agree with me, we can create a new Jira for the improvement.
--
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]