Use more generic name "django" instead of glitchtip for template
variables
This commit is contained in:
parent
efc58de740
commit
976c6799dd
19 changed files with 233 additions and 201 deletions
99
values.yaml
99
values.yaml
|
@ -22,25 +22,37 @@ environmentVariables:
|
|||
GLITCHTIP_DOMAIN: https://example.com
|
||||
|
||||
web:
|
||||
replicaCount: 1
|
||||
hpa:
|
||||
replicaCount: 2
|
||||
autoscaling:
|
||||
enabled: false
|
||||
cputhreshold: 70
|
||||
minpods: 2
|
||||
maxpods: 4
|
||||
# budget:
|
||||
# minAvailable: 1
|
||||
minReplicas: 1
|
||||
maxReplicas: 10
|
||||
targetCPUUtilizationPercentage: 80
|
||||
# targetMemoryUtilizationPercentage: 80
|
||||
|
||||
budget:
|
||||
minAvailable: 1
|
||||
resources:
|
||||
{}
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 256Mi
|
||||
# requests:
|
||||
# cpu: 50m
|
||||
# memory: 128Mi
|
||||
limits:
|
||||
cpu: 1000m
|
||||
memory: 512Mi
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 128Mi
|
||||
nodeSelector: {}
|
||||
tolerations: []
|
||||
affinity: {}
|
||||
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
|
||||
|
@ -49,22 +61,39 @@ web:
|
|||
failureThreshold: 10
|
||||
initialDelaySeconds: 5
|
||||
timeoutSeconds: 2
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 80
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
annotations:
|
||||
{}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
- host: chart-example.local
|
||||
paths: []
|
||||
tls: []
|
||||
# - secretName: chart-example-tls
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
worker:
|
||||
replicaCount: 1
|
||||
hpa:
|
||||
autoscaling:
|
||||
enabled: false
|
||||
cputhreshold: 90
|
||||
minpods: 1
|
||||
maxpods: 4
|
||||
minReplicas: 1
|
||||
maxReplicas: 100
|
||||
targetCPUUtilizationPercentage: 90
|
||||
# targetMemoryUtilizationPercentage: 80
|
||||
resources:
|
||||
{}
|
||||
# limits:
|
||||
# cpu: 500m
|
||||
# memory: 256Mi
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
limits:
|
||||
cpu: 900m
|
||||
memory: 768Mi
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 128Mi
|
||||
nodeSelector: {}
|
||||
tolerations: []
|
||||
affinity: {}
|
||||
|
@ -76,24 +105,6 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name:
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 80
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
annotations:
|
||||
{}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
- host: chart-example.local
|
||||
paths: []
|
||||
tls: []
|
||||
# - secretName: chart-example-tls
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
redis:
|
||||
enabled: true
|
||||
master:
|
||||
|
|
Reference in a new issue