mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* Initial Commit * cleaned up some unused values... * Delete values.yaml * cleanup * Disabled Persistant volume support for mysql due to it causing sapho server to try connecting to mysql before it is ready * Edited values.yaml: Removed line 8 - This setting causes MySQL to crash, root is the default user created so with this it tries to create the root user twice. NOTES.TXT: Removed section about MySQL. * Re-enabled livenessProbe (prev disabled for troubleshooting) * incubator/sapho/Chart.yaml: Added proper chart description and source URLs. incubator/sapho/README.md: Updated readme with a product description and revised install instructions. * Moved to stable/ * Moved into stable/ * Update NOTES.txt
34 lines
586 B
YAML
34 lines
586 B
YAML
# Default values for sapho.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
replicaCount: 1
|
|
image: sapho/ops-docker-tomcat:8-jre8
|
|
|
|
mysql:
|
|
persistence:
|
|
enabled: true
|
|
storageClass: generic
|
|
accessMode: ReadWriteOnce
|
|
size: 8Gi
|
|
resources:
|
|
requests:
|
|
memory: 512Mi
|
|
cpu: 250m
|
|
|
|
service:
|
|
name: sapho
|
|
type: LoadBalancer
|
|
externalPort: 80
|
|
internalPort: 8080
|
|
|
|
resources:
|
|
# limits:
|
|
# cpu: 500m
|
|
# memory: 2048Mi
|
|
requests:
|
|
cpu: 250m
|
|
memory: 2048Mi
|
|
saphoDBport: 3306
|
|
saphoDBtype: mysql
|
|
saphoDBuser: root
|