element-web: Clean up and comment values for 1.0
This commit is contained in:
parent
145a03759e
commit
f5271b0eba
2 changed files with 31 additions and 5 deletions
|
@ -10,7 +10,7 @@ icon: https://element.io/images/element-logo.svg
|
||||||
appVersion: 1.7.3
|
appVersion: 1.7.3
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.2
|
version: 1.0.0
|
||||||
|
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Alexander Olofsson
|
- name: Alexander Olofsson
|
||||||
|
|
|
@ -1,14 +1,18 @@
|
||||||
---
|
---
|
||||||
|
## Number of replicas
|
||||||
|
##
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
|
## Image configuration
|
||||||
|
##
|
||||||
image:
|
image:
|
||||||
repository: vectorim/riot-web
|
repository: vectorim/riot-web
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# tag: ""
|
# tag: ""
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
# nameOverride: ""
|
||||||
fullnameOverride: ""
|
# fullnameOverride: ""
|
||||||
|
|
||||||
## Default server for the Element install. (Required)
|
## Default server for the Element install. (Required)
|
||||||
## This will configure the default_server_config block in the config.json
|
## This will configure the default_server_config block in the config.json
|
||||||
|
@ -24,20 +28,28 @@ defaultServer:
|
||||||
##
|
##
|
||||||
config: {}
|
config: {}
|
||||||
|
|
||||||
|
## Configures an application-specific service account.
|
||||||
|
##
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
# Specifies whether a service account should be created
|
|
||||||
create: true
|
create: true
|
||||||
|
|
||||||
# Annotations to add to the service account
|
# Annotations to add to the service account
|
||||||
annotations: {}
|
annotations: {}
|
||||||
# The name of the service account to use.
|
# The name of the service account to use.
|
||||||
# If not set and create is true, a name is generated using the fullname template
|
# If not set and create is true, a name is generated using the fullname template
|
||||||
name: ""
|
name: ""
|
||||||
|
|
||||||
|
## Additional annotations to add to the pod.
|
||||||
|
##
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
|
||||||
|
## Security context configuration to add to the pod.
|
||||||
|
##
|
||||||
podSecurityContext: {}
|
podSecurityContext: {}
|
||||||
# fsGroup: 2000
|
# fsGroup: 2000
|
||||||
|
|
||||||
|
## Security context configuration to add to the container inside the pod.
|
||||||
|
##
|
||||||
securityContext: {}
|
securityContext: {}
|
||||||
# capabilities:
|
# capabilities:
|
||||||
# drop:
|
# drop:
|
||||||
|
@ -46,10 +58,14 @@ securityContext: {}
|
||||||
# runAsNonRoot: true
|
# runAsNonRoot: true
|
||||||
# runAsUser: 1000
|
# runAsUser: 1000
|
||||||
|
|
||||||
|
## Service configuration.
|
||||||
|
##
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
port: 80
|
port: 80
|
||||||
|
|
||||||
|
## Ingress configuration.
|
||||||
|
##
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
@ -62,6 +78,8 @@ ingress:
|
||||||
# hosts:
|
# hosts:
|
||||||
# - chart-example.local
|
# - chart-example.local
|
||||||
|
|
||||||
|
## Resource configuration for the application.
|
||||||
|
##
|
||||||
resources: {}
|
resources: {}
|
||||||
# limits:
|
# limits:
|
||||||
# cpu: 100m
|
# cpu: 100m
|
||||||
|
@ -70,15 +88,23 @@ resources: {}
|
||||||
# cpu: 100m
|
# cpu: 100m
|
||||||
# memory: 128Mi
|
# memory: 128Mi
|
||||||
|
|
||||||
|
## Configure auto-scaling for the application.
|
||||||
|
##
|
||||||
autoscaling:
|
autoscaling:
|
||||||
enabled: false
|
enabled: false
|
||||||
minReplicas: 1
|
minReplicas: 1
|
||||||
maxReplicas: 100
|
maxReplicas: 5
|
||||||
targetCPUUtilizationPercentage: 80
|
targetCPUUtilizationPercentage: 80
|
||||||
# targetMemoryUtilizationPercentage: 80
|
# targetMemoryUtilizationPercentage: 80
|
||||||
|
|
||||||
|
## Node selectors to use when deploying the application.
|
||||||
|
##
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
|
|
||||||
|
## Tolerations to apply to the application.
|
||||||
|
##
|
||||||
tolerations: []
|
tolerations: []
|
||||||
|
|
||||||
|
## Affinities to set on the application.
|
||||||
|
##
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
Loading…
Reference in a new issue