[bitnami/scylladb] Release 1.0.0 (#27090)

* [bitnami/scylladb] Release 1.0.0 updating components versions

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* [bitnami/scylladb] Active sysctl for test

Signed-off-by: David Gomez <dgomezleon@vmware.com>

* [bitnami/scylladb] Remove api port

Signed-off-by: David Gomez <dgomezleon@vmware.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* [bitnami/scylladb] Use api port for nodetool command

Signed-off-by: David Gomez <dgomezleon@vmware.com>

* [bitnami/scylladb] Set port for nodetool command

Signed-off-by: David Gomez <dgomezleon@vmware.com>

* [bitnami/scylladb] Set port for nodetool command in goss test

Signed-off-by: David Gomez <dgomezleon@vmware.com>

---------

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: David Gomez <dgomezleon@vmware.com>
Co-authored-by: David Gomez <dgomezleon@vmware.com>
This commit is contained in:
Bitnami Bot
2024-06-13 16:59:43 +02:00
committed by GitHub
parent 2d8e19f100
commit e5769627c1
7 changed files with 21 additions and 15 deletions

View File

@@ -24,7 +24,7 @@ command:
exit-status: 0
timeout: 20000
cluster-size:
exec: if [ "$(nodetool status | grep {{ .Vars.cluster.numTokens }} | wc -l)" -ne {{ $nodes }} ]; then exit 1; fi
exec: if [ "$(nodetool status -p {{ .Vars.containerPorts.api }} | grep {{ .Vars.cluster.numTokens }} | wc -l)" -ne {{ $nodes }} ]; then exit 1; fi
exit-status: 0
timeout: 20000
{{- $uid := .Vars.containerSecurityContext.runAsUser }}

View File

@@ -26,3 +26,5 @@ podSecurityContext:
containerSecurityContext:
enabled: true
runAsUser: 1002
sysctl:
enabled: true

View File

@@ -1,8 +1,12 @@
# Changelog
## 0.1.9 (2024-06-10)
## 1.0.0 (2024-06-13)
* [bitnami/scylladb] Release 0.1.9 ([#27069](https://github.com/bitnami/charts/pull/27069))
* [bitnami/scylladb] Release 1.0.0 ([#27090](https://github.com/bitnami/charts/pull/27090))
## <small>0.1.9 (2024-06-10)</small>
* [bitnami/scylladb] Release 0.1.9 (#27069) ([fd078f0](https://github.com/bitnami/charts/commit/fd078f0de0947450f4402d7abfd1a0b615babc20)), closes [#27069](https://github.com/bitnami/charts/issues/27069)
## <small>0.1.8 (2024-06-06)</small>

View File

@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.20.1
digest: sha256:9ee010e1027eb60974c9c0dffbc8e87a06d0e085fe9234401240b33b8f31056f
generated: "2024-06-10T11:32:52.057348758Z"
version: 2.20.2
digest: sha256:35d895f873f86ebff35e439bcf9da34c42a78c4db2e0e179bfb4014a2a0e2e10
generated: "2024-06-11T10:12:53.566477205Z"

View File

@@ -8,9 +8,9 @@ annotations:
- name: os-shell
image: docker.io/bitnami/os-shell:12-debian-12-r22
- name: scylladb
image: docker.io/bitnami/scylladb:5.4.7-debian-12-r0
image: docker.io/bitnami/scylladb:6.0.0-debian-12-r0
apiVersion: v2
appVersion: 5.4.7
appVersion: 6.0.0
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
@@ -30,4 +30,4 @@ maintainers:
name: scylladb
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/scylladb
version: 0.1.9
version: 1.0.0

View File

@@ -312,7 +312,7 @@ spec:
- /bin/bash
- -ec
- |
nodetool info | grep "Native Transport active: true"
nodetool info -p {{ .Values.containerPorts.api }} | grep "Native Transport active: true"
{{- else }}
tcpSocket:
port: cql
@@ -333,7 +333,7 @@ spec:
- /bin/bash
- -ec
- |
nodetool info -p {{ .Values.containerPorts.jmx }} | grep "Native Transport active: true"
nodetool info -p {{ .Values.containerPorts.api }} | grep "Native Transport active: true"
{{- else }}
tcpSocket:
port: cql
@@ -353,9 +353,9 @@ spec:
- -ec
# After stopping the node, create a flag file so the JMX Proxy can stop
{{- if not .Values.persistence.enabled }}
- nodetool decommission -p {{ .Values.containerPorts.jmx }} && touch /tmp/.node_decommissioned
- nodetool decommission -p {{ .Values.containerPorts.api }} && touch /tmp/.node_decommissioned
{{- else }}
- nodetool drain -p {{ .Values.containerPorts.jmx }} && touch /tmp/.node_decommissioned
- nodetool drain -p {{ .Values.containerPorts.api }} && touch /tmp/.node_decommissioned
{{- end }}
{{- else if .Values.lifecycleHooks }}
lifecycle: {{- include "common.tplvalues.render" (dict "value" .Values.lifecycleHooks "context" $) | nindent 12 }}
@@ -538,7 +538,7 @@ spec:
- /bin/bash
- -ec
- |
nodetool info -p {{ .Values.containerPorts.jmx }} | grep "Native Transport active: true"
nodetool info -p {{ .Values.containerPorts.api }} | grep "Native Transport active: true"
initialDelaySeconds: {{ .Values.jmxProxy.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.jmxProxy.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.jmxProxy.readinessProbe.timeoutSeconds }}

View File

@@ -82,7 +82,7 @@ diagnosticMode:
image:
registry: docker.io
repository: bitnami/scylladb
tag: 5.4.7-debian-12-r0
tag: 6.0.0-debian-12-r0
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'