Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Helm Charts for Minds Projects
Project
Project
Details
Activity
Releases
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
Compare Revisions
6c902400f9a99e5376406231ceb863a8b788a95c...bd11f43015455f8c8922b723cdb7f1dcfcd5bf4f
Source
bd11f43015455f8c8922b723cdb7f1dcfcd5bf4f
Select Git revision
...
Target
6c902400f9a99e5376406231ceb863a8b788a95c
Select Git revision
Compare
Commits (4)
(feat): support for iam roles
· b916d227
Mark Harding
authored
3 weeks ago
b916d227
(chore): bump up resources for sandbox sites
· ff5a4587
Mark Harding
authored
4 days ago
ff5a4587
(chore): ensure es-feeds is on for all
· 8fa54864
Mark Harding
authored
4 days ago
8fa54864
Fixing merge conflicts
· bd11f430
Brian Hatchet
authored
38 minutes ago
bd11f430
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
6 deletions
+23
-6
configMap.yaml
minds/templates/configMap.yaml
+11
-0
values.yaml
minds/values.yaml
+12
-6
No files found.
minds/templates/configMap.yaml
View file @
bd11f430
...
...
@@ -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 @
bd11f430
...
...
@@ -8,12 +8,12 @@ phpfpm:
tag
:
latest
pullPolicy
:
Always
replicas
:
1
max_children
:
5
#500 on production
max_children
:
10
#500 on production
max_requests
:
200
#20000 on production
resources
:
limits
:
memory
:
512Mi
cpu
:
600m
memory
:
1Gi
# 1GB of memory
cpu
:
1000m
# 1 CPU allocated
requests
:
cpu
:
200m
memory
:
256Mi
...
...
@@ -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.