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
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
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
b916d227
Commit
b916d227
authored
5 minutes ago
by
Mark Harding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(feat): support for iam roles
parent
c80aebae
sandbox-wip
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
3 deletions
+20
-3
configMap.yaml
minds/templates/configMap.yaml
+11
-0
values.yaml
minds/values.yaml
+9
-3
No files found.
minds/templates/configMap.yaml
View file @
b916d227
...
...
@@ -234,6 +234,17 @@ data:
'encryption_key' => '{{ .Values.jwtsecret }}',
]);
// Storage setup
$CONFIG->storage_engine = '{{ .Values.storageEngine }}';
// AWS configuration
$CONFIG->set('aws', [
'useRoles' => {{ .Values.aws.useRoles }},
'account_id' => '{{ .Values.aws.account_id }}',
'region' => '{{ .Values.aws.region }}',
'bucket' => '{{ .Values.aws.s3Bucket }}',
]);
// Legacy elgg configuration
$CONFIG->installed = true;
$CONFIG->path = '{{ .Values.path }}';
...
...
This diff is collapsed.
Click to expand it.
minds/values.yaml
View file @
b916d227
...
...
@@ -180,6 +180,15 @@ rabbitmq:
queueExchange
:
'
minds'
storageEngine
:
'
S3'
aws
:
useRoles
:
false
account_id
:
'
324044571751'
region
:
'
us-east-1'
bucket
:
'
minds-sandbox'
snsSecret
:
'
'
# CockroachDB
cockroachdb
:
Replicas
:
1
...
...
@@ -203,9 +212,6 @@ encryptionKeys:
private
:
public
:
aws
:
snsSecret
:
blockchain
:
testNet
:
'
true'
clientNetwork
:
'
4'
...
...
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