-
Notifications
You must be signed in to change notification settings - Fork 10
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
Helm Release Name and Namespace #334
Comments
Another idea is to configure the https://quarkus.io/guides/all-config.html#quarkus-core_quarkus-application-name when building your services and hence generating the helm charts. About the proposed improment, the second approach sounds good to me +1. If you have already something in mind, feel free to propose an implementation for it. |
I'm aware that it is possible to change the application name using this property. I'm deploying multiple Helm instances, each having a completely different |
I meant that this could be a common use case, as these two special |
Yes, the extension should support the Release object +1. |
I have the following use case.
I have multiple deployments of the same service with different configurations, which automatically should use the selected Helm K8s release namespace (
.Release.Namespace
) and Helm release name (.Release.Name
).For this, I added the following Quarkus Helm expressions:
To improve this situation, either
Quarkus Helm should provide a dedicated boolean for this functionality as this is probably a common use case
or
quarkus.helm.expressions.name
should at least support a list ofpaths
(YAMLPath expressions) instead of a singlepath
, the same asquarkus.values.name.paths
supports multiple YAMLPath expressionsSo it could at least look like this:
The text was updated successfully, but these errors were encountered: