UNCLASSIFIED

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

Merge branch 'mm-upgrade-to-v5.36.0-take2' into 'main-minio2'

Mm upgrade to v5.36.0 take2

See merge request !42
parents 9f9b8ca9 5b094daf
Pipeline #330460 passed with stages
in 5 minutes and 27 seconds
......@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
---
## [0.1.6-bb.6] - 2021-06-22
### Changed
- Update Mattermost to version 5.36.0
## [0.1.6-bb.5] - 2021-06-21
### Fixed
- NetworkPolicy blocking an init container, added policy to allow postgres egress for the init container
......
apiVersion: v2
name: mattermost
type: application
version: "0.1.6-bb.5"
appVersion: "5.34.2"
version: "0.1.6-bb.6"
appVersion: "5.36.0"
description: "Deployment of mattermost"
keywords:
- Mattermost
......
{{- if and .Values.networkPolicies.enabled (not .Values.minio.install) }}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-external-filestore-egress
namespace: {{ .Release.Namespace }}
spec:
podSelector:
matchLabels:
app: mattermost
policyTypes:
- Egress
egress:
- to:
- ipBlock:
cidr: 0.0.0.0/0
# ONLY Block requests to AWS metadata IP
except:
- 169.254.169.254/32
{{- end }}
{{- if and .Values.networkPolicies.enabled (not .Values.postgresql.install) }}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-external-postgres-egress
namespace: {{ .Release.Namespace }}
spec:
podSelector:
matchLabels:
app: mattermost
policyTypes:
- Egress
egress:
- to:
- ipBlock:
cidr: 0.0.0.0/0
# ONLY Block requests to AWS metadata IP
except:
- 169.254.169.254/32
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-external-postgres-egress-upgrade
namespace: {{ .Release.Namespace }}
......
{{- if and .Values.networkPolicies.enabled .Values.sso.enabled }}
{{- if .Values.networkPolicies.enabled }}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-sso-egress
name: allow-mattermost-egress
namespace: {{ .Release.Namespace }}
spec:
podSelector:
......
......@@ -36,7 +36,7 @@ sso:
# Repo and image tag
image:
name: registry1.dso.mil/ironbank/opensource/mattermost/mattermost
tag: 5.34.2
tag: 5.36.0
imagePullPolicy: IfNotPresent
global:
......
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