Skip to content

Commit

Permalink
use full url for helm-repos and alias in renovate.json (#9525)
Browse files Browse the repository at this point in the history
With this change, renovate will create PRs to update
the helm-dependencies, just as with docker-compose.

Note that only setting the repository to the full URL did not work,
I also had to add the registryAlias.
  • Loading branch information
rndmh3ro authored Feb 14, 2024
1 parent a5aac39 commit 329f942
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
"commitMessageExtra": "from {{currentVersion}} to {{#if isMajor}}v{{{newMajor}}}{{else}}{{#if isSingleVersion}}v{{{toVersion}}}{{else}}{{{newValue}}}{{/if}}{{/if}}",
"commitMessageSuffix": "({{packageFile}})",
"labels": ["dependencies"]
}]
}],
"registryAliases": {
"bitnami": "https://charts.bitnami.com/bitnami"
}
}
10 changes: 5 additions & 5 deletions helm/defectdojo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ maintainers:
dependencies:
- name: mysql
version: ~9.1.7
repository: "@bitnami"
repository: "https://charts.bitnami.com/bitnami"
condition: mysql.enabled
- name: postgresql
version: ~11.6.5
repository: "@bitnami"
repository: "https://charts.bitnami.com/bitnami"
condition: postgresql.enabled
- name: postgresql-ha
version: ~9.1.5
repository: "@bitnami"
repository: "https://charts.bitnami.com/bitnami"
alias: postgresqlha
condition: postgresqlha.enabled
- name: rabbitmq
version: ~11.2.0
repository: "@bitnami"
repository: "https://charts.bitnami.com/bitnami"
condition: rabbitmq.enabled
- name: redis
version: ~16.12.0
repository: "@bitnami"
repository: "https://charts.bitnami.com/bitnami"
condition: redis.enabled

0 comments on commit 329f942

Please sign in to comment.