UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 7aa96877 authored by Josh Wolf's avatar Josh Wolf
Browse files

fix: ensure mattermost-operator (and therefore mattermost) depend on...

fix: ensure mattermost-operator (and therefore mattermost) depend on gatekeeper, monitoring, and istio
parent 851fcbc8
No related branches found
No related tags found
1 merge request!293Resolve "Mattermost Operator should depend on Istio/Gatekeeper"
Pipeline #181359 passed
......@@ -100,11 +100,6 @@ spec:
namespace: {{ .Release.Namespace }}
{{- end }}
{{- if .Values.monitoring.enabled }}
- name: monitoring
namespace: {{ .Release.Namespace }}
{{- end }}
{{- with .Values.addons.mattermost.objectStorage }}
{{- if not (and .endpoint .accessKey .accessSecret .bucket) }}
- name: minio-operator
......
......@@ -44,4 +44,16 @@ spec:
values:
imagePullSecrets:
- name: private-registry
{{- if or .Values.gatekeeper.enabled .Values.monitoring.enabled }}
dependsOn:
{{- if .Values.gatekeeper.enabled }}
- name: gatekeeper
namespace: {{ .Release.Namespace }}
{{- end }}
{{- if .Values.monitoring.enabled }}
- name: monitoring
namespace: {{ .Release.Namespace }}
{{- end }}
{{- end }}
{{- end }}
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