blob: 5cb3e40fb957c28ce364a3e634c758dcf6835703 [file] [log] [blame]
Mohammed Naserc6e431b2024-03-15 01:21:44 -04001package openstack_helm
2
3type SenlinConf struct {
4 API SenlinAPIConf `yaml:"senlin_api"`
5 Database *DatabaseConf `yaml:"database,omitempty"`
6}
7
8type SenlinAPIConf struct {
9 Workers int32 `yaml:"workers"`
10}