Skip to content

Commit

Permalink
Merge branch 'bitnami:main' into pr-fix-additionalheadless
Browse files Browse the repository at this point in the history
  • Loading branch information
dmotte authored Oct 1, 2024
2 parents ed763d5 + d21e6fb commit 3c719c1
Show file tree
Hide file tree
Showing 39 changed files with 136 additions and 83 deletions.
2 changes: 1 addition & 1 deletion .vib/scylladb/ginkgo/scylladb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ var _ = Describe("Scylladb", Ordered, func() {
_, err = utils.StsRolloutRestart(ctx, c, ss)
Expect(err).NotTo(HaveOccurred())

for i := 0; i < int(origReplicas); i++ {
for i := int(origReplicas) - 1; i >= 0; i-- {
Eventually(func() (*v1.Pod, error) {
return c.CoreV1().Pods(namespace).Get(ctx, fmt.Sprintf("%s-%d", stsName, i), getOpts)
}, timeout, PollingInterval).Should(WithTransform(getRestartedAtAnnotation, Not(BeEmpty())))
Expand Down
8 changes: 6 additions & 2 deletions bitnami/drupal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 20.0.7 (2024-09-19)
## 20.0.8 (2024-09-29)

* [bitnami/drupal] Release 20.0.7 ([#29515](https://github.com/bitnami/charts/pull/29515))
* [bitnami/drupal] templates/ingress.yaml: fix wrong www.www tls name ([#29564](https://github.com/bitnami/charts/pull/29564))

## <small>20.0.7 (2024-09-19)</small>

* [bitnami/drupal] Release 20.0.7 (#29515) ([cfcfb7f](https://github.com/bitnami/charts/commit/cfcfb7fd7ae06eb0f766a71230bafb788893bc3c)), closes [#29515](https://github.com/bitnami/charts/issues/29515)

## <small>20.0.6 (2024-09-17)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/drupal/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ maintainers:
name: drupal
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/drupal
version: 20.0.7
version: 20.0.8
2 changes: 1 addition & 1 deletion bitnami/drupal/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
{{- if .Values.ingress.tls }}
- hosts:
- {{ .Values.ingress.hostname | quote }}
{{- if or (.Values.ingress.tlsWwwPrefix) (eq (index .Values.ingress.annotations "nginx.ingress.kubernetes.io/from-to-www-redirect") "true" ) }}
{{- if and (or (.Values.ingress.tlsWwwPrefix) (eq (index .Values.ingress.annotations "nginx.ingress.kubernetes.io/from-to-www-redirect") "true" )) (not (contains "www." .Values.ingress.hostname)) }}
- {{ printf "www.%s" (tpl .Values.ingress.hostname $) | quote }}
{{- end }}
secretName: {{ printf "%s-tls" .Values.ingress.hostname }}
Expand Down
8 changes: 6 additions & 2 deletions bitnami/mastodon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 7.0.5 (2024-09-19)
## 7.0.6 (2024-09-30)

* [bitnami/mastodon] Release 7.0.5 ([#29524](https://github.com/bitnami/charts/pull/29524))
* [bitnami/mastodon] Release 7.0.6 ([#29672](https://github.com/bitnami/charts/pull/29672))

## <small>7.0.5 (2024-09-19)</small>

* [bitnami/mastodon] Release 7.0.5 (#29524) ([87ff268](https://github.com/bitnami/charts/commit/87ff26881dc0fe0741dd88bb6513834a56c4ad65)), closes [#29524](https://github.com/bitnami/charts/issues/29524)

## <small>7.0.4 (2024-08-23)</small>

Expand Down
14 changes: 7 additions & 7 deletions bitnami/mastodon/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
dependencies:
- name: redis
repository: oci://registry-1.docker.io/bitnamicharts
version: 20.1.3
version: 20.1.5
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 15.5.32
version: 15.5.37
- name: elasticsearch
repository: oci://registry-1.docker.io/bitnamicharts
version: 21.3.17
version: 21.3.18
- name: minio
repository: oci://registry-1.docker.io/bitnamicharts
version: 14.7.10
version: 14.7.13
- name: apache
repository: oci://registry-1.docker.io/bitnamicharts
version: 11.2.19
version: 11.2.20
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.23.0
digest: sha256:149788045819cbb1accd21ebd07538a4b2c407a38d12fe2cfb07a10cf8ca8423
generated: "2024-09-19T09:40:40.258686237Z"
digest: sha256:f5738078a1829d12280fbce5f7e68c9abb19558a895f61d808d92157951fa349
generated: "2024-09-30T18:23:02.722050996Z"
6 changes: 3 additions & 3 deletions bitnami/mastodon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ annotations:
licenses: Apache-2.0
images: |
- name: mastodon
image: docker.io/bitnami/mastodon:4.2.12-debian-12-r4
image: docker.io/bitnami/mastodon:4.2.13-debian-12-r0
- name: os-shell
image: docker.io/bitnami/os-shell:12-debian-12-r30
apiVersion: v2
appVersion: 4.2.12
appVersion: 4.2.13
dependencies:
- condition: redis.enabled
name: redis
Expand Down Expand Up @@ -49,4 +49,4 @@ maintainers:
name: mastodon
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/mastodon
version: 7.0.5
version: 7.0.6
2 changes: 1 addition & 1 deletion bitnami/mastodon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ diagnosticMode:
image:
registry: docker.io
repository: bitnami/mastodon
tag: 4.2.12-debian-12-r4
tag: 4.2.13-debian-12-r0
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down
12 changes: 10 additions & 2 deletions bitnami/nessie/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# Changelog

## 0.1.32 (2024-09-26)
## 0.1.34 (2024-10-01)

* [bitnami/nessie] Release 0.1.32 ([#29636](https://github.com/bitnami/charts/pull/29636))
* [bitnami/nessie] Release 0.1.34 ([#29679](https://github.com/bitnami/charts/pull/29679))

## <small>0.1.33 (2024-10-01)</small>

* [bitnami/nessie] Release 0.1.33 (#29677) ([3a06a36](https://github.com/bitnami/charts/commit/3a06a3620919767cfc377213527946587968da4e)), closes [#29677](https://github.com/bitnami/charts/issues/29677)

## <small>0.1.32 (2024-09-26)</small>

* [bitnami/nessie] Release 0.1.32 (#29636) ([98e1a81](https://github.com/bitnami/charts/commit/98e1a811d041ad1b58cd1ce27f7c838eda789e51)), closes [#29636](https://github.com/bitnami/charts/issues/29636)

## <small>0.1.31 (2024-09-25)</small>

Expand Down
6 changes: 3 additions & 3 deletions bitnami/nessie/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 15.5.35
version: 15.5.37
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.23.0
digest: sha256:71907e9cb04737abfb6dae2a912377b7100551027b7f740b944aca97481e53ff
generated: "2024-09-26T20:13:09.522273064Z"
digest: sha256:a8fb5df2a7578f1ccda3b52964654422a3ee7d169fc2a5fedb19eec6fcfd3437
generated: "2024-10-01T13:20:05.725003038Z"
6 changes: 3 additions & 3 deletions bitnami/nessie/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ annotations:
licenses: Apache-2.0
images: |
- name: nessie
image: docker.io/bitnami/nessie:0.99.0-debian-12-r0
image: docker.io/bitnami/nessie:0.99.0-debian-12-r2
- name: os-shell
image: docker.io/bitnami/os-shell:12-debian-12-r30
- name: postgresql
image: docker.io/bitnami/postgresql:16.4.0-debian-12-r11
image: docker.io/bitnami/postgresql:16.4.0-debian-12-r13
apiVersion: v2
appVersion: 0.99.0
dependencies:
Expand Down Expand Up @@ -38,4 +38,4 @@ sources:
- https://github.com/bitnami/charts/tree/main/bitnami/nessie
- https://github.com/bitnami/containers/tree/main/bitnami/nessie
- https://github.com/nessie/nessie
version: 0.1.32
version: 0.1.34
4 changes: 2 additions & 2 deletions bitnami/nessie/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ javaOpts: ""
image:
registry: docker.io
repository: bitnami/nessie
tag: 0.99.0-debian-12-r0
tag: 0.99.0-debian-12-r2
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down Expand Up @@ -800,7 +800,7 @@ waitContainer:
image:
registry: docker.io
repository: bitnami/postgresql
tag: 16.4.0-debian-12-r11
tag: 16.4.0-debian-12-r13
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down
8 changes: 6 additions & 2 deletions bitnami/nginx-ingress-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 11.4.1 (2024-09-06)
## 11.4.2 (2024-09-26)

* [bitnami/nginx-ingress-controller] Release 11.4.1 ([#29265](https://github.com/bitnami/charts/pull/29265))
* [bitnami/nginx-ingress-controller] Specify resources for nginx ingress controller deployment init container ([#29621](https://github.com/bitnami/charts/pull/29621))

## <small>11.4.1 (2024-09-06)</small>

* [bitnami/nginx-ingress-controller] Release 11.4.1 (#29265) ([60bb42d](https://github.com/bitnami/charts/commit/60bb42da0b5a962161fe1b127a2fa5c141060d34)), closes [#29265](https://github.com/bitnami/charts/issues/29265)

## 11.4.0 (2024-08-23)

Expand Down
2 changes: 1 addition & 1 deletion bitnami/nginx-ingress-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ maintainers:
name: nginx-ingress-controller
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/nginx-ingress-controller
version: 11.4.1
version: 11.4.2
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ spec:
{{- if .Values.containerSecurityContext.enabled }}
securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 12 }}
{{- end }}
{{- if .Values.resources }}
resources: {{- toYaml .Values.resources | nindent 12 }}
{{- else if ne .Values.resourcesPreset "none" }}
resources: {{- include "common.resources.preset" (dict "type" .Values.resourcesPreset) | nindent 12 }}
{{- end }}
command:
- /bin/bash
args:
Expand Down
6 changes: 5 additions & 1 deletion bitnami/nginx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 18.2.1 (2024-09-29)

* [bitnami/nginx] templates/ingress.yaml: fix wrong www.www tls name ([#29563](https://github.com/bitnami/charts/pull/29563))

## 18.2.0 (2024-09-20)

* [bitnami/nginx] stream server blocks ([#29491](https://github.com/bitnami/charts/pull/29491))
* [bitnami/nginx] stream server blocks (#29491) ([89e5604](https://github.com/bitnami/charts/commit/89e5604be18dff45ac2da9ff48383b97cb20a23d)), closes [#29491](https://github.com/bitnami/charts/issues/29491)

## <small>18.1.15 (2024-09-19)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/nginx/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ maintainers:
name: nginx
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/nginx
version: 18.2.0
version: 18.2.1
2 changes: 1 addition & 1 deletion bitnami/nginx/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
{{- if and .Values.ingress.tls (or (include "common.ingress.certManagerRequest" ( dict "annotations" .Values.ingress.annotations )) .Values.ingress.selfSigned (not (empty .Values.ingress.secrets))) }}
- hosts:
- {{ .Values.ingress.hostname | quote }}
{{- if or (.Values.ingress.tlsWwwPrefix) (eq (index .Values.ingress.annotations "nginx.ingress.kubernetes.io/from-to-www-redirect") "true" ) }}
{{- if and (or (.Values.ingress.tlsWwwPrefix) (eq (index .Values.ingress.annotations "nginx.ingress.kubernetes.io/from-to-www-redirect") "true" )) (not (contains "www." .Values.ingress.hostname)) }}
- {{ printf "www.%s" (tpl .Values.ingress.hostname $) | quote }}
{{- end }}
secretName: {{ printf "%s-tls" .Values.ingress.hostname }}
Expand Down
8 changes: 6 additions & 2 deletions bitnami/scylladb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 2.0.3 (2024-09-09)
## 2.0.4 (2024-10-01)

* [bitnami/scylladb] Release 2.0.3 ([#29315](https://github.com/bitnami/charts/pull/29315))
* [bitnami/scylladb] Release 2.0.4 ([#29592](https://github.com/bitnami/charts/pull/29592))

## <small>2.0.3 (2024-09-09)</small>

* [bitnami/scylladb] Release 2.0.3 (#29315) ([bb6c8e3](https://github.com/bitnami/charts/commit/bb6c8e3e8a7bbf630506ea477681a890bb8d3fa6)), closes [#29315](https://github.com/bitnami/charts/issues/29315)

## <small>2.0.2 (2024-08-29)</small>

Expand Down
6 changes: 3 additions & 3 deletions bitnami/scylladb/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.22.0
digest: sha256:a8fb2fc887ead658a89598a48acde5324196fbc0509503a3eaed50a710fbfe74
generated: "2024-08-21T10:33:49.185351344Z"
version: 2.23.0
digest: sha256:fbd6439f12ded949c04553b9c52a4c8153a8f2790147d972b314ddcd46921a14
generated: "2024-09-25T11:24:22.524605764Z"
6 changes: 3 additions & 3 deletions bitnami/scylladb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ annotations:
- name: os-shell
image: docker.io/bitnami/os-shell:12-debian-12-r30
- name: scylladb
image: docker.io/bitnami/scylladb:6.1.1-debian-12-r3
image: docker.io/bitnami/scylladb:6.1.2-debian-12-r2
apiVersion: v2
appVersion: 6.1.1
appVersion: 6.1.2
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
Expand All @@ -30,4 +30,4 @@ maintainers:
name: scylladb
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/scylladb
version: 2.0.3
version: 2.0.5
2 changes: 1 addition & 1 deletion bitnami/scylladb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ diagnosticMode:
image:
registry: docker.io
repository: bitnami/scylladb
tag: 6.1.1-debian-12-r3
tag: 6.1.2-debian-12-r2
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down
8 changes: 6 additions & 2 deletions bitnami/seaweedfs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 2.0.2 (2024-09-19)
## 2.0.3 (2024-09-30)

* [bitnami/seaweedfs] Release 2.0.2 ([#29537](https://github.com/bitnami/charts/pull/29537))
* [bitnami/seaweedfs] Release 2.0.3 ([#29675](https://github.com/bitnami/charts/pull/29675))

## <small>2.0.2 (2024-09-19)</small>

* [bitnami/seaweedfs] Release 2.0.2 (#29537) ([2c05061](https://github.com/bitnami/charts/commit/2c050617c8d43da601117f7c8fd1945e00962da0)), closes [#29537](https://github.com/bitnami/charts/issues/29537)

## <small>2.0.1 (2024-09-17)</small>

Expand Down
8 changes: 4 additions & 4 deletions bitnami/seaweedfs/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
dependencies:
- name: mariadb
repository: oci://registry-1.docker.io/bitnamicharts
version: 19.0.6
version: 19.0.7
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 15.5.32
version: 15.5.37
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.23.0
digest: sha256:43ce65b977678b8a0ee299913157a5551e25932e539844eba876b4e663e062fe
generated: "2024-09-19T13:19:51.960003354Z"
digest: sha256:b520134cbe20d02f89293dca6f9f85aaf1f046db0f99fc4281df0d72da9c4348
generated: "2024-09-30T21:24:14.017619074Z"
8 changes: 4 additions & 4 deletions bitnami/seaweedfs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ annotations:
- name: os-shell
image: docker.io/bitnami/os-shell:12-debian-12-r30
- name: postgresql
image: docker.io/bitnami/postgresql:16.4.0-debian-12-r9
image: docker.io/bitnami/postgresql:16.4.0-debian-12-r13
- name: seaweedfs
image: docker.io/bitnami/seaweedfs:3.73.0-debian-12-r1
image: docker.io/bitnami/seaweedfs:3.74.0-debian-12-r0
apiVersion: v2
appVersion: 3.73.0
appVersion: 3.74.0
dependencies:
- condition: mariadb.enabled
name: mariadb
Expand Down Expand Up @@ -50,4 +50,4 @@ name: seaweedfs
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/seawwedfs
- https://github.com/bitnami/containers/tree/main/bitnami/seaweedfs
version: 2.0.2
version: 2.0.3
4 changes: 2 additions & 2 deletions bitnami/seaweedfs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ diagnosticMode:
image:
registry: docker.io
repository: bitnami/seaweedfs
tag: 3.73.0-debian-12-r1
tag: 3.74.0-debian-12-r0
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down Expand Up @@ -3401,7 +3401,7 @@ postgresql:
image:
registry: docker.io
repository: bitnami/postgresql
tag: 16.4.0-debian-12-r9
tag: 16.4.0-debian-12-r13
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down
8 changes: 6 additions & 2 deletions bitnami/spark/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 9.2.11 (2024-09-25)
## 9.2.12 (2024-09-25)

* [bitnami/spark] Release 9.2.11 ([#29593](https://github.com/bitnami/charts/pull/29593))
* [bitnami/spark] Fix extraEgress being applied from master instead of worker ([#29591](https://github.com/bitnami/charts/pull/29591))

## <small>9.2.11 (2024-09-25)</small>

* [bitnami/spark] Release 9.2.11 (#29593) ([733c5e8](https://github.com/bitnami/charts/commit/733c5e8a5516fa46c6f86c5d503edc388fae2d7e)), closes [#29593](https://github.com/bitnami/charts/issues/29593)

## <small>9.2.10 (2024-08-24)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/spark/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ maintainers:
name: spark
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/spark
version: 9.2.11
version: 9.2.12
4 changes: 2 additions & 2 deletions bitnami/spark/templates/networkpolicy-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ spec:
- podSelector:
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 14 }}
app.kubernetes.io/component: master
{{- if .Values.master.networkPolicy.extraEgress }}
{{- include "common.tplvalues.render" ( dict "value" .Values.master.networkPolicy.extraEgress "context" $ ) | nindent 4 }}
{{- if .Values.worker.networkPolicy.extraEgress }}
{{- include "common.tplvalues.render" ( dict "value" .Values.worker.networkPolicy.extraEgress "context" $ ) | nindent 4 }}
{{- end }}
{{- end }}
ingress:
Expand Down
Loading

0 comments on commit 3c719c1

Please sign in to comment.