Skip to content

Commit 91e2efc

Browse files
author
Harry Waye
authored
chore(bitnami): use the pre-2022 bitnami repo index.yaml (#658)
Bitnami did a bit of a size reduction of their index.yaml for their Helm repo in the last day or so: bitnami/charts#14024 We previously changed to using pre-2022 for other charts that fell out of the [6 month retention policy](bitnami/charts#10539) but not for all. Looks like a few more have now dropped on of the main index so I'm changing all to use the github hosted pre-2022 index. We should actually update these charts at some point, but given these will likely be major upgrades I'm not doing it for now. My main aim is to get back to a point where we can release our chart, currently CI chart-releaser is failing.
1 parent 2b2d322 commit 91e2efc

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/release-chart.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
3939
- name: Add helm repositories
4040
run: |
41-
helm repo add bitnami https://charts.bitnami.com/bitnami
4241
helm repo add bitnami-pre-2022 https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
4342
helm repo add kubernetes https://kubernetes.github.io/ingress-nginx
4443
helm repo add jetstack https://charts.jetstack.io

charts/posthog/Chart.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ dependencies:
66
repository: https://kubernetes.github.io/ingress-nginx
77
version: 4.0.13
88
- name: kafka
9-
repository: https://charts.bitnami.com/bitnami
9+
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
1010
version: 14.9.3
1111
- name: minio
12-
repository: https://charts.bitnami.com/bitnami
12+
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
1313
version: 11.3.5
1414
- name: postgresql
1515
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
1616
version: 8.6.1
1717
- name: redis
18-
repository: https://charts.bitnami.com/bitnami
18+
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
1919
version: 16.8.9
2020
- name: zookeeper
2121
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
@@ -44,5 +44,5 @@ dependencies:
4444
- name: prometheus-statsd-exporter
4545
repository: https://prometheus-community.github.io/helm-charts
4646
version: 0.3.1
47-
digest: sha256:2cfffe0d2d6df0b3c43983b18ecd517ba71ff31bab91901037b51d64dee74eb0
48-
generated: "2022-11-15T10:43:43.316599+01:00"
47+
digest: sha256:5ac223659ced28c44ff2c89963e0268427f848b5d4db98df9b8f1010f22f8207
48+
generated: "2022-12-20T11:35:36.888806538Z"

charts/posthog/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ dependencies:
3030

3131
- name: kafka
3232
version: 14.9.3
33-
repository: https://charts.bitnami.com/bitnami
33+
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
3434
condition: kafka.enabled
3535

3636
- name: minio
3737
version: 11.3.5
38-
repository: https://charts.bitnami.com/bitnami
38+
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
3939
condition: minio.enabled
4040

4141
- name: postgresql
@@ -45,7 +45,7 @@ dependencies:
4545

4646
- name: redis
4747
version: 16.8.9
48-
repository: https://charts.bitnami.com/bitnami
48+
repository: https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami
4949
condition: redis.enabled
5050

5151
- name: zookeeper

ci/kubetest/helpers/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def exec_subprocess(cmd, ignore_errors=False):
255255
def install_external_kafka(namespace=NAMESPACE):
256256
log.debug("🔄 Setting up external Kafka...")
257257
cmd = """
258-
helm repo add bitnami https://charts.bitnami.com/bitnami && \
258+
helm repo add bitnami https://raw.githubusercontent.com/bitnami/charts/pre-2022/bitnami && \
259259
helm upgrade --install \
260260
--namespace {namespace} \
261261
kafka bitnami/kafka \

0 commit comments

Comments
 (0)