mirror of
https://github.com/Alfresco/acs-community-packaging.git
synced 2025-09-10 14:12:09 +00:00
- removed pvc - updated readme and helm notes to specify infrastructure dependency - set default claim for postgres
92 lines
1.9 KiB
YAML
92 lines
1.9 KiB
YAML
# Default values for alfresco-acs.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
registryPullSecrets: quay-registry-secret
|
|
|
|
repository:
|
|
replicaCount: 1
|
|
image:
|
|
repository: quay.io/alfresco/alfresco-full-content-services-community
|
|
tag: "latest"
|
|
pullPolicy: Always
|
|
internalPort: 8080
|
|
service:
|
|
name: alfresco
|
|
type: NodePort
|
|
externalPort: 80
|
|
ingress:
|
|
path: /alfresco
|
|
environment:
|
|
JAVA_OPTS: " -Dsolr.base.url=/solr
|
|
-Dsolr.secureComms=none
|
|
-Dindex.subsystem.name=solr6"
|
|
resources:
|
|
requests:
|
|
memory: "1000Mi"
|
|
limits:
|
|
memory: "4000Mi"
|
|
|
|
share:
|
|
replicaCount: 1
|
|
image:
|
|
repository: quay.io/alfresco/alfresco-full-share
|
|
tag: "5.2.X"
|
|
pullPolicy: Always
|
|
internalPort: 8080
|
|
service:
|
|
name: share
|
|
type: NodePort
|
|
externalPort: 80
|
|
ingress:
|
|
path: /share
|
|
resources:
|
|
requests:
|
|
memory: "500Mi"
|
|
limits:
|
|
memory: "1000Mi"
|
|
|
|
solr:
|
|
replicaCount: 1
|
|
image:
|
|
repository: quay.io/alfresco/search-services
|
|
tag: "1.2.0-SNAPSHOT"
|
|
pullPolicy: IfNotPresent
|
|
internalPort: 8983
|
|
service:
|
|
name: solr
|
|
type: NodePort
|
|
externalPort: 80
|
|
ingress:
|
|
path: /solr
|
|
environment:
|
|
SOLR_CREATE_ALFRESCO_DEFAULTS: alfresco,archive
|
|
resources:
|
|
requests:
|
|
memory: "250Mi"
|
|
limits:
|
|
memory: "500Mi"
|
|
|
|
database:
|
|
type: postgresql
|
|
|
|
postgresql:
|
|
## If true, install the postgresql chart alongside Alfresco Content Services
|
|
enabled: true
|
|
nameOverride: postgresql-acs
|
|
imageTag: "9.4.12"
|
|
postgresUser: alfresco
|
|
postgresPassword: alfresco
|
|
postgresDatabase: alfresco
|
|
persistence:
|
|
existingClaim: "alfresco-volume-claim"
|
|
subPath: "alfresco-content-services/database-data"
|
|
resources:
|
|
requests:
|
|
memory: "250Mi"
|
|
limits:
|
|
memory: "500Mi"
|
|
driver: org.postgresql.Driver
|
|
|
|
replicaCount: 1
|