-
Notifications
You must be signed in to change notification settings - Fork 6
Replace bitnami images #1248
New issue
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
Replace bitnami images #1248
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,18 @@ | ||
| dependencies: | ||
| - name: mongodb | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
| version: 12.1.31 | ||
| - name: minio | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
| version: 12.13.2 | ||
| - name: rabbitmq | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
| version: 10.3.9 | ||
| - name: elasticsearch | ||
| repository: https://charts.bitnami.com/bitnami | ||
| version: 19.17.6 | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
| version: 19.21.2 | ||
| - name: keycloak | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
| version: 13.4.1 | ||
| digest: sha256:bc6716e0e75da58a375db706ad62a53f3730c867b1a51b75f756a6726ad39d0f | ||
| generated: "2024-02-12T16:23:45.259548-06:00" | ||
| digest: sha256:21d18d2cca8db612841c7d9ee1bade697171d353524ed5cab6f24c91cc774e2f | ||
| generated: "2025-11-13T15:27:27.006227-06:00" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ description: > | |
| # This is the chart version. This version number should be incremented each time you make changes | ||
| # to the chart and its templates, including the app version. | ||
| # Versions are expected to follow Semantic Versioning (https://semver.org/) | ||
| version: 1.9.2 | ||
| version: 1.9.3 | ||
|
|
||
| # This is the version number of the application being deployed. This version number should be | ||
| # incremented each time you make changes to the application. Versions are not expected to | ||
|
|
@@ -37,21 +37,21 @@ sources: | |
| dependencies: | ||
| - name: mongodb | ||
| version: ~12 | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
| condition: mongodb.enabled | ||
| - name: minio | ||
| version: ~12 | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
|
||
| condition: minio.enabled | ||
| - name: rabbitmq | ||
| version: ~10 | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
|
||
| condition: rabbitmq.enabled | ||
| - name: elasticsearch | ||
| version: ~19 | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
|
||
| condition: elasticsearch.enabled | ||
| - name: keycloak | ||
| version: ~13 | ||
| repository: https://charts.bitnami.com/bitnami | ||
| repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/ | ||
|
||
| condition: keycloak.enabled | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistency between the repository URL in the README and Chart.yaml. The README instructions use
https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami(without trailing slash), but the Chart.yaml dependencies usehttps://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami/(with trailing slash). These should match to ensure thehelm repo addcommand aligns with the repository URLs referenced in the dependencies.