UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 0dd194dc authored by Micah Nagel's avatar Micah Nagel
Browse files

Merge branch '13-support-for-tolerations' into 'main'

Resolve "Support for Tolerations"

Closes #13

See merge request platform-one/big-bang/apps/collaboration-tools/mattermost!78
parents aaa0192f 47844615
No related branches found
Tags 0.3.0-bb.0
1 merge request!78Resolve "Support for Tolerations"
Pipeline #596876 passed
......@@ -3,6 +3,11 @@
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.3.0-bb.0] - 2021-12-06
### Changed
- Added a conditional addition of tolerations to mattermost.yaml
- Added a spot for tolerations in values.yaml
## [0.2.4-bb.0] - 2021-11-02
### Changed
- Disabled ingress by default
......
# mattermost
![Version: 0.2.4-bb.0](https://img.shields.io/badge/Version-0.2.4--bb.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.39.0](https://img.shields.io/badge/AppVersion-5.39.0-informational?style=flat-square)
![Version: 0.3.0-bb.0](https://img.shields.io/badge/Version-0.3.0--bb.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.39.0](https://img.shields.io/badge/AppVersion-5.39.0-informational?style=flat-square)
Deployment of mattermost
......@@ -70,6 +70,7 @@ helm install mattermost chart/
| resources.requests.memory | string | `"4Gi"` | |
| affinity | object | `{}` | |
| nodeSelector | object | `{}` | |
| tolerations | object | `{}` | |
| mattermostEnvs | object | `{}` | |
| existingSecretEnvs | object | `{}` | |
| volumes | object | `{}` | |
......
......@@ -2,7 +2,7 @@
apiVersion: v2
name: mattermost
type: application
version: "0.2.4-bb.0"
version: "0.3.0-bb.0"
appVersion: "5.39.0"
description: "Deployment of mattermost"
keywords:
......
......@@ -164,6 +164,11 @@ spec:
{{ toYaml .Values.nodeSelector | nindent 6 }}
{{- end }}
{{- if .Values.tolerations}}
tolerations:
{{- toYaml .Values.tolerations | nindent 6 }}
{{- end }}
{{- with .Values.volumes }}
volumes:
{{- toYaml . | nindent 4}}
......
......@@ -91,6 +91,12 @@ affinity: {}
nodeSelector: {}
# node-type: mattermost
tolerations: {}
# - key: "key1"
# operator: "Equal"
# value: "value1"
# effect: "NoSchedule"
# Any ENVs provided here get put into a `mattermost-envs` secret and pulled into the env
mattermostEnvs: {}
# MM_ENV_NAME: "{{ .Values.users }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment