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