Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
H
Helm Charts for Minds Projects
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Helm Charts for Minds Projects
Commits
bea965a8
Commit
bea965a8
authored
1 hour ago
by
Mark Harding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(feat): support having shared database resources for staging
parent
da02a61a
sandbox-wip
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
6 deletions
+14
-6
requirements.lock
minds/requirements.lock
+2
-2
requirements.yaml
minds/requirements.yaml
+3
-2
configMap.yaml
minds/templates/configMap.yaml
+5
-0
values.yaml
minds/values.yaml
+4
-2
No files found.
minds/requirements.lock
View file @
bea965a8
...
...
@@ -11,5 +11,5 @@ dependencies:
- name: rabbitmq
repository: https://kubernetes-charts.storage.googleapis.com/
version: 4.1.0
digest: sha256:
82fe1d259b4a3e00c1bb94a49ef21eb306b56181cf3fae83ac92d024f2515ece
generated: "2019-06-28T2
0:22:36.419207
+01:00"
digest: sha256:
ff418def7167baa3fed1de190fda4170719280a110d9f14fe24bef5c6e2f9c85
generated: "2019-06-28T2
1:26:42.061018
+01:00"
This diff is collapsed.
Click to expand it.
minds/requirements.yaml
View file @
bea965a8
...
...
@@ -2,14 +2,15 @@ dependencies:
-
name
:
redis
version
:
0.9.0
repository
:
https://kubernetes-charts.storage.googleapis.com/
#condition: production
condition
:
redis.deploy
-
name
:
cassandra
version
:
0.10.3
repository
:
http://storage.googleapis.com/kubernetes-charts-incubator/
condition
:
cassandra.deploy
-
name
:
elasticsearch
version
:
7.1.1
repository
:
https://helm.elastic.co
condition
:
useElasticSearch
condition
:
elasticsearch.deploy
-
name
:
rabbitmq
version
:
4.1.0
repository
:
https://kubernetes-charts.storage.googleapis.com/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
minds/templates/configMap.yaml
View file @
bea965a8
...
...
@@ -168,8 +168,13 @@ data:
// Cassandra configuration
$CONFIG->cassandra = (object) [
'keyspace' => '{{ .Values.cassandra.keyspace }}',
{{- if .Values.deployCassandra }}
'servers' => [ '{{ .Release.Name }}-cassandra' ],
'cql_servers' => [ '{{ .Release.Name }}-cassandra' ],
{{- else }}
'servers' => [ 'cassandra' ],
'cql_servers' => [ 'cassandra' ],
{{- end }}
'username' => '{{ .Values.cassandra.username }}',
'password' => '{{ .Values.cassandra.password }}',
];
...
...
This diff is collapsed.
Click to expand it.
minds/values.yaml
View file @
bea965a8
...
...
@@ -61,14 +61,14 @@ affinity: {}
production
:
false
useElasticSearch
:
true
# Redis
redis
:
deploy
:
true
# Set to true if you want to deploy a new redis cluster
usePassword
:
false
# Cassandra
cassandra
:
deploy
:
false
# Set to true if you want to deploy a new cassandra cluster
config
:
cluster_size
:
1
start_rpc
:
true
...
...
@@ -85,8 +85,10 @@ cassandra:
username
:
cassandra
password
:
cassandra
# Elasticsearch
elasticsearch
:
deploy
:
false
# Set to true if you want to deploy a new elasticsearch cluster
clusterName
:
minds-elasticsearch
#esMajorVersion: 6
replicas
:
1
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment