moved comments to fit frigate
This commit is contained in:
parent
25dafc3c82
commit
ce53a03d54
42
values.yaml
42
values.yaml
@ -1,24 +1,20 @@
|
||||
---
|
||||
namespace: default
|
||||
controller:
|
||||
# -- enable the controller
|
||||
enabled: true
|
||||
# type of controller
|
||||
# valid options are deployment, statefulset, job
|
||||
type: deployment
|
||||
replicas: 1
|
||||
namespace: default # namespace to install to
|
||||
controller: # main workload
|
||||
enabled: true # should the main workload be included or not
|
||||
type: deployment # valid options are deployment, statefulset, job
|
||||
replicas: 1 # number of replicas
|
||||
|
||||
image:
|
||||
repository:
|
||||
pullPolicy:
|
||||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: ""
|
||||
repository: # container image name
|
||||
pullPolicy: # kubernetes pull policy
|
||||
tag: "" # Overrides the image tag whose default is the chart appVersion.
|
||||
|
||||
fullnameOverride: ""
|
||||
fullnameOverride: "" # override the name of the helm release
|
||||
|
||||
service:
|
||||
service: # services that should be created
|
||||
main:
|
||||
enabled: true
|
||||
enabled: false
|
||||
type: ClusterIP
|
||||
annotations: {}
|
||||
labels: {}
|
||||
@ -46,7 +42,7 @@ service:
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
service: main
|
||||
service: main # what service should the ingress target
|
||||
#Service to target
|
||||
servicePort: 80
|
||||
className: ""
|
||||
@ -64,8 +60,7 @@ ingress:
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
resources:
|
||||
{}
|
||||
resources: {}
|
||||
# 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
|
||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||
@ -84,8 +79,7 @@ autoscaling:
|
||||
targetCPUUtilizationPercentage: 80
|
||||
# targetMemoryUtilizationPercentage: 80
|
||||
|
||||
# Secrets that needs to be created
|
||||
secrets: {}
|
||||
secrets: {} # Secrets that needs to be created
|
||||
# secrets:
|
||||
# <name>:
|
||||
# type: #default Opaque
|
||||
@ -95,8 +89,7 @@ secrets: {}
|
||||
# data:
|
||||
# KEY: VALUE
|
||||
|
||||
# ConfigMaps that needs to be created
|
||||
configs: {}
|
||||
configs: {} # ConfigMaps that needs to be created
|
||||
# configs:
|
||||
# <name>:
|
||||
# annotations: {}
|
||||
@ -105,7 +98,7 @@ configs: {}
|
||||
# data:
|
||||
# KEY: VALUE
|
||||
|
||||
env: {}
|
||||
env: {} # environment variables the controller should have
|
||||
|
||||
# Additional volumes on the output Deployment definition.
|
||||
volumes: []
|
||||
@ -120,8 +113,7 @@ volumeMounts: []
|
||||
# mountPath: "/etc/foo"
|
||||
# readOnly: true
|
||||
|
||||
# used for statefulset https://kubernetes.io/docs/concepts/workloads/controllers/statefulset
|
||||
volumeClaimTemplates: []
|
||||
volumeClaimTemplates: [] # used for statefulset https://kubernetes.io/docs/concepts/workloads/controllers/statefulset
|
||||
#volumeClaimTemplates:
|
||||
# - name: www
|
||||
# mountPath: /var/www/html
|
||||
|
Loading…
Reference in New Issue
Block a user