We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.Name
release.FullName
I wanted to install milvus for various reasons as a dependent chart e.g.
milvus/ milvus/Chart.yaml milvus/values.yaml
where: Chart.yaml
Chart.yaml
apiVersion: v2 name: milvus description: A Helm chart deploying milvus via the operator type: application version: 0.1.0 appVersion: "1.0.0" dependencies: - name: milvus-operator version: "0.9.16" repository: "https://zilliztech.github.io/milvus-operator/"
values.yaml
is empty.
The problem is Release.fullName becomes milvus-milvus-operator and release.Name becomes milvus.
Release.fullName
milvus-milvus-operator
milvus
This results in inconsistencies around the Certificate generated. The only way to make this work is to set the following in values.yaml
milvus-operator: fullnameOverride: "milvus"
The text was updated successfully, but these errors were encountered:
Hi @butler54, thank you for feedback! We'll fix this later. Or if you'd like to, you may could open a PR to fix this.
Sorry, something went wrong.
haorenfsa
No branches or pull requests
I wanted to install milvus for various reasons as a dependent chart e.g.
where:
Chart.yaml
values.yaml
is empty.
The problem is
Release.fullName
becomesmilvus-milvus-operator
andrelease.Name
becomesmilvus
.This results in inconsistencies around the Certificate generated. The only way to make this work is to set the following in
values.yaml
The text was updated successfully, but these errors were encountered: