style(helm): run prettier and add templates to prettierignore

This commit is contained in:
Julian Tölle 2020-11-21 15:53:51 +01:00
parent 5440571d91
commit 0e431e9aa8
2 changed files with 11 additions and 5 deletions

2
.prettierignore Normal file
View file

@ -0,0 +1,2 @@
# Prettier will break the helm templating language (`{{ .Value }}` -> `{ { .Value } }`)
charts/listory/templates

View file

@ -21,10 +21,12 @@ serviceAccount:
# 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:
podSecurityContext: {} podSecurityContext:
{}
# fsGroup: 2000 # fsGroup: 2000
securityContext: {} securityContext:
{}
# capabilities: # capabilities:
# drop: # drop:
# - ALL # - ALL
@ -39,7 +41,8 @@ service:
ingress: ingress:
enabled: false enabled: false
host: "" host: ""
annotations: {} annotations:
{}
# kubernetes.io/ingress.class: nginx # kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true" # kubernetes.io/tls-acme: "true"
tls: [] tls: []
@ -47,7 +50,8 @@ ingress:
# hosts: # hosts:
# - chart-example.local # - chart-example.local
resources: {} resources:
{}
# We usually recommend not to specify default resources and to leave this as a conscious # We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little # choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following # resources, such as Minikube. If you do want to specify resources, uncomment the following