UNCLASSIFIED

Commit bf250b7d authored by Micah Nagel's avatar Micah Nagel 💰
Browse files

Merge branch 'blloyd_issue_573_dns5353' into 'main-minio2'

Add port 5353 for openshift DNS

See merge request !47
parents 03ff2df3 ac9c082f
Pipeline #381262 passed with stages
in 6 minutes and 13 seconds
...@@ -3,6 +3,10 @@ ...@@ -3,6 +3,10 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
--- ---
## [0.1.6-bb.8] - 2021-07-21
### Changed
- Add openshift toggle, conditionally add port 5353 egress. Changing "openshift:" to true in values.yaml will enable.
## [0.1.6-bb.7] - 2021-07-08 ## [0.1.6-bb.7] - 2021-07-08
### Changed ### Changed
- Update Mattermost to version 5.36.1 - Update Mattermost to version 5.36.1
......
apiVersion: v2 apiVersion: v2
name: mattermost name: mattermost
type: application type: application
version: "0.1.6-bb.7" version: "0.1.6-bb.8"
appVersion: "5.36.1" appVersion: "5.36.1"
description: "Deployment of mattermost" description: "Deployment of mattermost"
keywords: keywords:
......
...@@ -15,4 +15,8 @@ spec: ...@@ -15,4 +15,8 @@ spec:
ports: ports:
- port: 53 - port: 53
protocol: UDP protocol: UDP
{{- if .Values.openshift }}
- port: 5353
protocol: UDP
{{- end }}
{{- end }} {{- end }}
...@@ -193,3 +193,5 @@ elasticsearch: ...@@ -193,3 +193,5 @@ elasticsearch:
enablesearching: true enablesearching: true
# When true, Elasticsearch will be used for all autocompletion queries on users and channels using the latest index. Autocompletion results may be incomplete until a bulk index of the existing users and channels database is finished. When false, database autocomplete is used. # When true, Elasticsearch will be used for all autocompletion queries on users and channels using the latest index. Autocompletion results may be incomplete until a bulk index of the existing users and channels database is finished. When false, database autocomplete is used.
enableautocomplete: true enableautocomplete: true
openshift: false
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment