forked from jfrog/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update mission-control version to 3.4.2 (jfrog#217)
* Update mission-control version to 3.4.2 Support for PostgreSQL externalisation Move mission-control microservices to single pod
- Loading branch information
Showing
26 changed files
with
1,031 additions
and
771 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# CI values for Mission-control. | ||
|
||
#rbac: | ||
# create: false | ||
# rbac: | ||
# create: false | ||
# | ||
#serviceAccount: | ||
# create: false | ||
# serviceAccount: | ||
# create: false | ||
|
||
mongodb: | ||
postgresql: | ||
postgresPassword: postgres | ||
db: | ||
adminPassword: password | ||
mcPassword: password | ||
insightPassword: password | ||
jfisPassword: password | ||
jfscPassword: password | ||
jfexPassword: password | ||
jfmcPassword: password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
dependencies: | ||
- name: postgresql | ||
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
version: 0.9.5 | ||
- name: mongodb | ||
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
version: 4.3.10 | ||
digest: sha256:4b73e049c22266044d5ac107752a71e7462fd6df8cd3954ffaa8ddca0e9848d0 | ||
generated: 2018-10-14T15:09:31.394737758+03:00 | ||
digest: sha256:3299d564e9a61263571329d573aa1c6100869bd81d55edf949072c34ee43fcdd | ||
generated: 2019-02-19T18:55:08.944392949+05:30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
dependencies: | ||
- name: postgresql | ||
version: 0.9.5 | ||
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
condition: postgresql.enabled | ||
- name: mongodb | ||
version: 4.3.10 | ||
repository: https://kubernetes-charts.storage.googleapis.com/ | ||
condition: mongodb.enabled | ||
condition: mongodb.enabled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{{- if and .Values.database.type (not (.Values.postgresql.enabled)) }} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ template "mission-control.fullname" . }}-db-cred | ||
labels: | ||
app: {{ template "mission-control.name" . }} | ||
chart: {{ template "mission-control.chart" . }} | ||
heritage: {{ .Release.Service }} | ||
release: {{ .Release.Name }} | ||
type: Opaque | ||
data: | ||
{{- if .Values.database.password }} | ||
dbPassword: {{ .Values.database.password | b64enc | quote }} | ||
{{- end }} | ||
{{- if .Values.database.jfmcPassword }} | ||
jfmcPassword: {{ .Values.database.jfmcPassword | b64enc | quote }} | ||
{{- end }} | ||
{{- if .Values.database.jfisPassword }} | ||
jfisPassword: {{ .Values.database.jfisPassword | b64enc | quote }} | ||
{{- end }} | ||
{{- if .Values.database.jfscPassword }} | ||
jfscPassword: {{ .Values.database.jfscPassword | b64enc | quote }} | ||
{{- end }} | ||
{{- if .Values.database.jfexPassword }} | ||
jfexPassword: {{ .Values.database.jfexPassword | b64enc | quote }} | ||
{{- end }} | ||
{{- end }} |
This file was deleted.
Oops, something went wrong.
134 changes: 0 additions & 134 deletions
134
stable/mission-control/templates/insight-executor-deployment.yaml
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
stable/mission-control/templates/insight-executor-pvc.yaml
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
stable/mission-control/templates/insight-executor-svc.yaml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.