chart-unifi_network_application: fix include parametrization
This commit is contained in:
@ -77,7 +77,7 @@ spec:
|
|||||||
volumes:
|
volumes:
|
||||||
- name: {{ include "template.fullname" . }}-app-config-volume
|
- name: {{ include "template.fullname" . }}-app-config-volume
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: {{ include "template.fullname" }}-{{ default "config-claim" .Values.persistence.claimSuffix }}
|
claimName: {{ include "template.fullname" . }}-{{ default "config-claim" .Values.persistence.claimSuffix }}
|
||||||
|
|
||||||
containers:
|
containers:
|
||||||
- name: {{ include "template.fullname" . }}-app
|
- name: {{ include "template.fullname" . }}-app
|
||||||
|
|||||||
@ -2,24 +2,20 @@
|
|||||||
# -- how many app replicas to run; only ever tested with 1
|
# -- how many app replicas to run; only ever tested with 1
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: linuxserver/unifi-network-application
|
repository: linuxserver/unifi-network-application
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# -- overrides the image tag whose default is the chart appVersion
|
# -- overrides the image tag whose default is the chart appVersion
|
||||||
tag: ''
|
tag: ''
|
||||||
|
|
||||||
|
|
||||||
nameOverride: ''
|
nameOverride: ''
|
||||||
# -- can be used to override the main app name; incorporates release name by default
|
# -- can be used to override the main app name; incorporates release name by default
|
||||||
fullnameOverride: ''
|
fullnameOverride: ''
|
||||||
|
|
||||||
|
|
||||||
global:
|
global:
|
||||||
# -- globally set the storage class for PVCs
|
# -- globally set the storage class for PVCs
|
||||||
storageClass: ''
|
storageClass: ''
|
||||||
|
|
||||||
|
|
||||||
service:
|
service:
|
||||||
annotations: {}
|
annotations: {}
|
||||||
type:
|
type:
|
||||||
@ -39,7 +35,6 @@ ingress:
|
|||||||
# traefik.ingress.kubernetes.io/router.middlewares: default-redirect-https@kubernetescrd
|
# traefik.ingress.kubernetes.io/router.middlewares: default-redirect-https@kubernetescrd
|
||||||
# ingress.kubernetes.io/custom-request-headers: X-Forwarded-Proto:https
|
# ingress.kubernetes.io/custom-request-headers: X-Forwarded-Proto:https
|
||||||
|
|
||||||
|
|
||||||
resources: {}
|
resources: {}
|
||||||
# Suggested/tested resource settings
|
# Suggested/tested resource settings
|
||||||
# requests:
|
# requests:
|
||||||
@ -49,7 +44,6 @@ resources: {}
|
|||||||
# memory: 1.5Gi
|
# memory: 1.5Gi
|
||||||
# cpu: 2
|
# cpu: 2
|
||||||
|
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
# -- whether to deal with persistence at all
|
# -- whether to deal with persistence at all
|
||||||
enabled: true
|
enabled: true
|
||||||
@ -66,7 +60,6 @@ persistence:
|
|||||||
# -- size limit for the PVC
|
# -- size limit for the PVC
|
||||||
size: 128Mi
|
size: 128Mi
|
||||||
|
|
||||||
|
|
||||||
mongodb:
|
mongodb:
|
||||||
# -- image to pull and use; for arm64 (eg Raspberry Pi 4), use "arm64v8/mongo"
|
# -- image to pull and use; for arm64 (eg Raspberry Pi 4), use "arm64v8/mongo"
|
||||||
image: mongo
|
image: mongo
|
||||||
|
|||||||
Reference in New Issue
Block a user