我正在尝试创建具有多个子图表的图表(ibm-db2oltp-dev的2个实例)
有没有一种方法可以在相同的values.yaml文件中为每个实例定义不同的配置。
我需要两个数据库:
db2inst.instname: user1
db2inst.password: password1
options.databaseName: dbname1
db2inst.instname: user2
db2inst.password: password2
options.databaseName: dbname2
我看到可以通过别名完成操作,但是我没有找到解释该操作方法的示例。
是否可以 ?
谢谢
最佳答案
是的,有可能:
requirements.yaml
dependencies:
- name: ibm-db2oltp-dev *(full chart name here)*
repository: http://localhost:10191 *(Actual repository url here)*
version: 0.1.0 *(Required version)*
alias: db1inst *(The name of the chart locally)*
- name: ibm-db2oltp-dev
repository: http://localhost:10191
version: 0.1.0
alias: db2inst
parentChart/values.yaml:
someParentChartValueX: x
someParentChartValueY: y
db1inst:
instname: user1
db2inst: password1
db2inst:
instname: user2
db2inst: password2
关于kubernetes - HELM Kubernetes-具有不同.Values属性的多个子图表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57093039/