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
2495080a
Commit
2495080a
authored
2 hours ago
by
Mark Harding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fix): supply cassandra username and password
parent
2f6784bc
sandbox-wip
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
Chart.yaml
minds/Chart.yaml
+1
-1
configMap.yaml
minds/templates/configMap.yaml
+3
-1
values.yaml
minds/values.yaml
+2
-0
No files found.
minds/Chart.yaml
View file @
2495080a
...
...
@@ -2,4 +2,4 @@ apiVersion: v1
appVersion
:
"
1.0"
description
:
A Helm chart for Kubernetes
name
:
minds
version
:
0.1.
0
version
:
0.1.
1
This diff is collapsed.
Click to expand it.
minds/templates/configMap.yaml
View file @
2495080a
...
...
@@ -169,7 +169,9 @@ data:
$CONFIG->cassandra = (object) [
'keyspace' => '{{ .Values.cassandra.keyspace }}',
'servers' => [ '{{ .Release.Name }}-cassandra' ],
'cql_servers' => [ '{{ .Release.Name }}-cassandra' ]
'cql_servers' => [ '{{ .Release.Name }}-cassandra' ],
'username' => '{{ .Values.cassandra.username }}',
'password' => '{{ .Values.cassandra.password }}',
];
// CockroachDB configuration
...
...
This diff is collapsed.
Click to expand it.
minds/values.yaml
View file @
2495080a
...
...
@@ -78,6 +78,8 @@ cassandra:
#memory: "4Gi"
#cpu: 1
keyspace
:
minds
username
:
cassandra
password
:
cassandra
# Elasticsearch
elasticsearch
:
...
...
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