EugenMayer / helm-charts

Helm charts for applications no official chart exists for
24 stars 19 forks source link

Fix JDBC url on values #25

Closed lucasmellos closed 2 years ago

lucasmellos commented 2 years ago

The values are shown that host property is required for database-secret, but host doesn't exists, instead jdbc does.

- name: RUNDECK_DATABASE_URL
              valueFrom:
                secretKeyRef:
                  name: "rundeck-database-secret"
                  key: jdbc

Original values

database:
  # A secret including the following keys `type`,`host`,`port`,`user`,`password`,`database`
  # type can be postgresql/mysql and so forth. Should be in the same namespace as you deploy the helm chart
  secret_name: rundeck-database-secret

Should be

database:
  # A secret including the following keys `type`,`jdbc`,`port`,`user`,`password`,`database`
  # type can be postgresql/mysql and so forth. Should be in the same namespace as you deploy the helm chart
  secret_name: rundeck-database-secret
EugenMayer commented 2 years ago

Thank you, fixed