UNCLASSIFIED

Commit 5b094daf authored by Charles Culman's avatar Charles Culman Committed by Micah Nagel
Browse files

Mm upgrade to v5.36.0 take2

parent 9f9b8ca9
...@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ...@@ -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 ## [0.1.6-bb.5] - 2021-06-21
### Fixed ### Fixed
- NetworkPolicy blocking an init container, added policy to allow postgres egress for the init container - NetworkPolicy blocking an init container, added policy to allow postgres egress for the init container
......
apiVersion: v2 apiVersion: v2
name: mattermost name: mattermost
type: application type: application
version: "0.1.6-bb.5" version: "0.1.6-bb.6"
appVersion: "5.34.2" appVersion: "5.36.0"
description: "Deployment of mattermost" description: "Deployment of mattermost"
keywords: keywords:
- Mattermost - 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) }} {{- if and .Values.networkPolicies.enabled (not .Values.postgresql.install) }}
apiVersion: networking.k8s.io/v1 apiVersion: networking.k8s.io/v1
kind: NetworkPolicy 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: metadata:
name: allow-external-postgres-egress-upgrade name: allow-external-postgres-egress-upgrade
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
......
{{- if and .Values.networkPolicies.enabled .Values.sso.enabled }} {{- if .Values.networkPolicies.enabled }}
apiVersion: networking.k8s.io/v1 apiVersion: networking.k8s.io/v1
kind: NetworkPolicy kind: NetworkPolicy
metadata: metadata:
name: allow-sso-egress name: allow-mattermost-egress
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
spec: spec:
podSelector: podSelector:
......
...@@ -36,7 +36,7 @@ sso: ...@@ -36,7 +36,7 @@ sso:
# Repo and image tag # Repo and image tag
image: image:
name: registry1.dso.mil/ironbank/opensource/mattermost/mattermost name: registry1.dso.mil/ironbank/opensource/mattermost/mattermost
tag: 5.34.2 tag: 5.36.0
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
global: 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