Refactor
This commit is contained in:
parent
0079a1dcb9
commit
fd14c6d228
19 changed files with 158 additions and 128 deletions
59
values.yaml
59
values.yaml
|
@ -1,25 +1,22 @@
|
|||
# Default values for glitchtip.
|
||||
# Default values for django.
|
||||
# This is a YAML-formatted file.
|
||||
# Declare variables to be passed into your templates.
|
||||
|
||||
image:
|
||||
repository: glitchtip/glitchtip
|
||||
repository: glitchtip/glitchtip # Demo app, change this.
|
||||
tag: latest
|
||||
pullPolicy: Always
|
||||
|
||||
imagePullSecrets: []
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
databaseURL:
|
||||
secretKey:
|
||||
redisURL:
|
||||
# Only needed when using stripe for saas environment
|
||||
stripeLiveSecretKey:
|
||||
djstripeWebhookSecret:
|
||||
|
||||
environmentVariables:
|
||||
ENABLE_SOCIAL_AUTH: false
|
||||
GLITCHTIP_DOMAIN: https://example.com
|
||||
env:
|
||||
normal: {}
|
||||
secret: {}
|
||||
# SECRET_KEY:
|
||||
# DATABASE_URL:
|
||||
# REDIS_URL:
|
||||
|
||||
web:
|
||||
replicaCount: 2
|
||||
|
@ -41,18 +38,18 @@ web:
|
|||
memory: 128Mi
|
||||
nodeSelector: {}
|
||||
tolerations: []
|
||||
affinity:
|
||||
podAntiAffinity:
|
||||
preferredDuringSchedulingIgnoredDuringExecution:
|
||||
- weight: 100
|
||||
podAffinityTerm:
|
||||
labelSelector:
|
||||
matchExpressions:
|
||||
- key: app.kubernetes.io/instance
|
||||
operator: In
|
||||
values:
|
||||
- glitchtip-prod-web
|
||||
topologyKey: kubernetes.io/hostname
|
||||
affinity: {}
|
||||
# podAntiAffinity:
|
||||
# preferredDuringSchedulingIgnoredDuringExecution:
|
||||
# - weight: 100
|
||||
# podAffinityTerm:
|
||||
# labelSelector:
|
||||
# matchExpressions:
|
||||
# - key: app.kubernetes.io/instance
|
||||
# operator: In
|
||||
# values:
|
||||
# - glitchtip-prod-web
|
||||
# topologyKey: kubernetes.io/hostname
|
||||
livenessProbe:
|
||||
failureThreshold: 5
|
||||
initialDelaySeconds: 5
|
||||
|
@ -67,19 +64,22 @@ web:
|
|||
|
||||
ingress:
|
||||
enabled: false
|
||||
annotations:
|
||||
{}
|
||||
className: ""
|
||||
annotations: {}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
- host: chart-example.local
|
||||
paths: []
|
||||
paths:
|
||||
- path: /
|
||||
pathType: ImplementationSpecific
|
||||
tls: []
|
||||
# - secretName: chart-example-tls
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
worker:
|
||||
enabled: true
|
||||
replicaCount: 1
|
||||
autoscaling:
|
||||
enabled: false
|
||||
|
@ -110,13 +110,12 @@ redis:
|
|||
master:
|
||||
persistence:
|
||||
enabled: false
|
||||
slave:
|
||||
replica:
|
||||
replicaCount: 1
|
||||
persistence:
|
||||
enabled: false
|
||||
cluster:
|
||||
enabled: false
|
||||
slaveCount: 1
|
||||
|
||||
# Default to disabled, use a managed database service. But can be enabled here.
|
||||
postgresql:
|
||||
enabled: false
|
||||
postgresqlPassword: # Must be set
|
||||
|
|
Reference in a new issue