Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
Fixed TLS Ingress, updated mongo dep requirements and app to latest v…
Browse files Browse the repository at this point in the history
…ersion (#7636)

Signed-off-by: Bart Verwilst <bart@verwilst.be>
  • Loading branch information
verwilst authored and k8s-ci-robot committed Sep 19, 2018
1 parent 0d7fbc9 commit 5a97849
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
5 changes: 3 additions & 2 deletions stable/rocketchat/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rocketchat
version: 0.1.4
appVersion: 0.68.5
version: 0.1.5
appVersion: 0.69.1
description: Prepare to take off with the ultimate chat platform, experience the next
level of team communications
keywords:
Expand All @@ -21,4 +21,5 @@ maintainers:
email: buildmaster@rocket.chat
- name: geekgonecrazy
- name: pierreozoux
- name: verwilst
engine: gotpl
6 changes: 3 additions & 3 deletions stable/rocketchat/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: mongodb
repository: https://kubernetes-charts.storage.googleapis.com/
version: 4.2.2
digest: sha256:e0861bef41fadbe3d9f213bd1d103f0e266faf2c2a06d58ab11199d0dc4cfcf9
generated: 2018-08-31T09:39:11.558129592Z
version: 4.3.2
digest: sha256:ddfaec6a053a9e5944e28b808b2ef6d1dc60357e7e3bc755553881fadb946537
generated: 2018-09-10T08:39:20.065497472Z
2 changes: 1 addition & 1 deletion stable/rocketchat/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies:
- name: mongodb
version: 4.2.2
version: 4.3.x
repository: https://kubernetes-charts.storage.googleapis.com/
12 changes: 4 additions & 8 deletions stable/rocketchat/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,6 @@ metadata:
kubernetes.io/tls-acme: "true"
{{- end }}
spec:
{{- if .Values.ingress.tls }}
tls:
- hosts:
- {{ .Values.host }}
{{- if (ne "-" .Values.ingress.secretName) }}
secretName: {{ .Values.ingress.secretName | default (printf "%s-tls" (include "rocketchat.fullname" .)) }}
{{- end }}
{{- end }}
rules:
- host: {{ .Values.host }}
http:
Expand All @@ -30,4 +22,8 @@ spec:
backend:
serviceName: {{ template "rocketchat.fullname" . }}
servicePort: 3000
{{- if .Values.ingress.tls }}
tls:
{{ toYaml .Values.ingress.tls | indent 4 }}
{{- end }}
{{- end -}}
7 changes: 5 additions & 2 deletions stable/rocketchat/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Rocket Chat image version
## ref: https://hub.docker.com/r/library/rocket.chat/tags/
##
image: rocket.chat:0.68.5
image: rocket.chat:0.69.1

## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down Expand Up @@ -103,6 +103,9 @@ serviceAccount:
###
ingress:
enabled: false
tls: false
annotations:
kubernetes.io/ingress.class: "nginx"
tls:
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

0 comments on commit 5a97849

Please sign in to comment.