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
c80aebaefd2a41ff8ef9f73499fcd1cbdea0a697...8fa5486479cb18300f739cdbcfc7a4ad9260c3cb
Source
8fa5486479cb18300f739cdbcfc7a4ad9260c3cb
Select Git revision
...
Target
c80aebaefd2a41ff8ef9f73499fcd1cbdea0a697
Select Git revision
Compare
Commits (3)
(feat): support for iam roles
· b916d227
Mark Harding
authored
3 weeks ago
b916d227
(chore): bump up resources for sandbox sites
· ff5a4587
Mark Harding
authored
46 minutes ago
ff5a4587
(chore): ensure es-feeds is on for all
· 8fa54864
Mark Harding
authored
46 minutes ago
8fa54864
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
7 deletions
+24
-7
configMap.yaml
minds/templates/configMap.yaml
+12
-1
values.yaml
minds/values.yaml
+12
-6
No files found.
minds/templates/configMap.yaml
View file @
8fa54864
...
...
@@ -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 }}';
...
...
@@ -588,7 +599,7 @@ data:
'suggested-users' => false,
'helpdesk' => true,
'top-feeds' => true,
'es-feeds' =>
'canary'
,
'es-feeds' =>
true
,
'cassandra-notifications' => true,
]);
php-fpm.conf
:
|-
...
...
This diff is collapsed.
Click to expand it.
minds/values.yaml
View file @
8fa54864
...
...
@@ -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.