```
Update excalidraw Helm chart values for clarity Modified the values.yaml file for the excalidraw Helm chart to enhance clarity and configuration consistency. Specific changes include setting defaults for undefined values such as image tag, pod security context, and resources, ensuring that users can easily identify where to fill in custom configurations. This update aims to prevent confusion for users who might overlook required values due to empty fields, thereby improving the overall user experience and configuration process. ```
This commit is contained in:
parent
185e3515a1
commit
814028266b
@ -38,7 +38,7 @@ replicaCount: 1
|
||||
image:
|
||||
repository: excalidraw/excalidraw
|
||||
pullPolicy: IfNotPresent
|
||||
tag: "latest"
|
||||
tag: ""
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
@ -53,10 +53,12 @@ serviceAccount:
|
||||
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
podSecurityContext:
|
||||
{}
|
||||
# fsGroup: 2000
|
||||
|
||||
securityContext: {}
|
||||
securityContext:
|
||||
{}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
@ -65,7 +67,8 @@ securityContext: {}
|
||||
# runAsUser: 1000
|
||||
|
||||
# -- Init Containers
|
||||
initContainers: []
|
||||
initContainers:
|
||||
[]
|
||||
# - name: init-container
|
||||
# image: busybox
|
||||
# command: ['sh', '-c', 'echo "this is an init container"']
|
||||
@ -78,7 +81,8 @@ service:
|
||||
ingress:
|
||||
enabled: false
|
||||
className: ""
|
||||
annotations: {}
|
||||
annotations:
|
||||
{}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
@ -91,7 +95,8 @@ ingress:
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
resources: {}
|
||||
resources:
|
||||
{}
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
Loading…
x
Reference in New Issue
Block a user