-
Notifications
You must be signed in to change notification settings - Fork 27
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
Use unique names -- include release name #140
Comments
I will have a look into this. It's most likely not there because this chart was not bootstrapped by |
It was present in the first commit and was immediately removed: ocis-charts/templates/deployment.yaml Lines 3 to 6 in 7f91f94
|
Yes was removed without further notice in ec848c1. I will try to add this again. |
Had a first look. There is a dependency to #50 which needs to be addressed first. If the app/service names change, the certificate as generated in our docs at https://doc.owncloud.com/ocis/next/deployment/container/orchestration/orchestration.html#built-in-user-management-secrets won't match anymore, as the name will not be fixed to |
The release name would needed to be included in every objects' name. Also we would need to touch all selector labels. Also the secret auto-generation would need to be touched. I guess it's still a lot of work (especially when considering a path for backwards compatibility). To be honest, from my side this is more a low priority right now, but I'm just a developer and no product manager. |
This is the first Helm Chart I've encountered that don't include the release name in the names of created object. If I
helm install mycloud ocis/ocis
, I expect deployments/services/... objects to be namedmycloud-web
,mycloud-proxy
, ... so they don't conflict with other installed charts.This is even the default in the
helm create
chart. Why did you get rid of thefullname
macro? This is dangerous.The text was updated successfully, but these errors were encountered: