Skip to content
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

[bitnami/juypterhub] postgres image missing when postgres is disabled (fluxCD/argoCD) #28841

Merged
merged 11 commits into from
Aug 23, 2024
8 changes: 6 additions & 2 deletions bitnami/jupyterhub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 7.2.14 (2024-07-31)
## 7.2.15 (2024-08-21)

* [bitnami/jupyterhub] Release 7.2.14 ([#28600](https://github.com/bitnami/charts/pull/28600))
* [bitnami/juypterhub] postgres image missing when postgres is disabled (fluxCD/argoCD) ([#28841](https://github.com/bitnami/charts/pull/28841))

## <small>7.2.14 (2024-07-31)</small>

* [bitnami/jupyterhub] Release 7.2.14 (#28600) ([b6af234](https://github.com/bitnami/charts/commit/b6af23429e898606e2ec2a2fd0bdfc2c26cb1bb7)), closes [#28600](https://github.com/bitnami/charts/issues/28600)

## <small>7.2.13 (2024-07-25)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/jupyterhub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ maintainers:
name: jupyterhub
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub
version: 7.2.14
version: 7.2.15
2 changes: 1 addition & 1 deletion bitnami/jupyterhub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -919,4 +919,4 @@ Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
2 changes: 2 additions & 0 deletions bitnami/jupyterhub/templates/hub/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ spec:
{{- if .Values.hub.terminationGracePeriodSeconds }}
terminationGracePeriodSeconds: {{ .Values.hub.terminationGracePeriodSeconds }}
{{- end }}
{{- if .Values.postgresql.enabled }}
initContainers:
# NOTE: The value postgresql.image is not available unless postgresql.enabled is not set. We could change this to use os-shell if
# it had the binary wait-for-port.
Expand Down Expand Up @@ -127,6 +128,7 @@ spec:
{{- if .Values.hub.initContainers }}
{{- include "common.tplvalues.render" (dict "value" .Values.hub.initContainers "context" $) | nindent 8 }}
{{- end }}
{{- end }}
containers:
- name: hub
image: {{ template "jupyterhub.hub.image" . }}
Expand Down
Loading