From 02a3182701dec1a91a486259022ed0d7bac93ef7 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Sun, 21 Nov 2021 01:20:50 +0200 Subject: [PATCH] fix(apps): Default enable all services (#1361) * fix(apps): Default enable all services * replace code with template * minio * tdarr * aria2 * calibre * deconz * deluge * littlelink * lms * main service and port is enabled by default * main service and port is enabled by default pt2 * remove `type: NodePort` from values.yaml on services * Remove `type: ClusterIP` from `values.yaml` on services * add serviceexpert on nextcloud * nullserv * odoo * protonmail-bridge split smtp and main services * openldap * oscam * owncast * pihole * remove `enabled: true` on main from traefik and external-service * remove `primary: true` * qbit * resilio sync * vaultwarden * valheim * syncthing * unfi * zwavejs2mqtt * teamspeak3 * transmission * tvheadend * test protonmail main enabled * there is no main in protonmail duh... * remove `protocol: tcp` from ports on `values.yaml` as this is the default in common --- charts/core/k8s-gateway/values.yaml | 1 - charts/core/traefik/values.yaml | 2 - charts/dependency/mariadb/values.yaml | 1 - charts/dependency/postgresql/values.yaml | 1 - charts/incubator/minio/questions.yaml | 6 ++ charts/incubator/minio/values.yaml | 2 + charts/incubator/omada-controller/values.yaml | 5 -- charts/incubator/tdarr-node/values.yaml | 1 - charts/incubator/tdarr/questions.yaml | 6 ++ charts/incubator/tdarr/values.yaml | 3 +- charts/stable/appdaemon/values.yaml | 2 - charts/stable/aria2/questions.yaml | 6 ++ charts/stable/aria2/values.yaml | 1 - charts/stable/babybuddy/questions.yaml | 54 +-------------- charts/stable/calibre/questions.yaml | 6 ++ charts/stable/calibre/values.yaml | 4 +- charts/stable/deconz/questions.yaml | 12 ++++ charts/stable/deepstack-cpu/values.yaml | 1 - charts/stable/deepstack-gpu/values.yaml | 1 - charts/stable/deluge/questions.yaml | 12 ++++ charts/stable/deluge/values.yaml | 1 - charts/stable/dsmr-reader/questions.yaml | 54 +-------------- charts/stable/etherpad/questions.yaml | 54 +-------------- charts/stable/external-service/values.yaml | 1 - .../stable/firefox-syncserver/questions.yaml | 54 +-------------- charts/stable/gotify/questions.yaml | 54 +-------------- charts/stable/handbrake/values.yaml | 1 - charts/stable/hyperion-ng/values.yaml | 3 - charts/stable/jackett/values.yaml | 1 - charts/stable/joplin-server/questions.yaml | 54 +-------------- charts/stable/kanboard/questions.yaml | 54 +-------------- charts/stable/kms/values.yaml | 1 - charts/stable/littlelink/values.yaml | 1 - .../stable/logitech-media-server/values.yaml | 6 ++ charts/stable/miniflux/questions.yaml | 54 +-------------- charts/stable/mosquitto/values.yaml | 2 - charts/stable/nextcloud/questions.yaml | 18 +++++ charts/stable/nullserv/questions.yaml | 6 ++ charts/stable/nullserv/values.yaml | 2 - charts/stable/odoo/questions.yaml | 68 ++++--------------- charts/stable/odoo/values.yaml | 5 +- charts/stable/openkm/questions.yaml | 54 +-------------- charts/stable/openkm/values.yaml | 1 - charts/stable/openldap/questions.yaml | 6 ++ charts/stable/oscam/questions.yaml | 1 - charts/stable/oscam/values.yaml | 1 - charts/stable/owncast/questions.yaml | 6 ++ charts/stable/owncast/values.yaml | 3 +- charts/stable/pgadmin/values.yaml | 1 - charts/stable/phpldapadmin/values.yaml | 1 - charts/stable/pihole/questions.yaml | 13 +++- charts/stable/pihole/values.yaml | 4 +- charts/stable/podgrab/values.yaml | 4 +- charts/stable/protonmail-bridge/values.yaml | 5 +- charts/stable/qbittorrent/questions.yaml | 12 ++++ charts/stable/qbittorrent/values.yaml | 1 - charts/stable/recipes/questions.yaml | 54 +-------------- charts/stable/resilio-sync/questions.yaml | 12 ++++ charts/stable/resilio-sync/values.yaml | 7 +- charts/stable/ser2sock/values.yaml | 2 - charts/stable/shiori/questions.yaml | 54 +-------------- charts/stable/statping/questions.yaml | 54 +-------------- charts/stable/syncthing/values.yaml | 4 +- charts/stable/teamspeak3/questions.yaml | 12 ++++ charts/stable/teamspeak3/values.yaml | 4 -- charts/stable/teedy/questions.yaml | 54 +-------------- charts/stable/traccar/questions.yaml | 54 +-------------- charts/stable/transmission/questions.yaml | 12 ++++ charts/stable/transmission/values.yaml | 1 - charts/stable/tt-rss/questions.yaml | 54 +-------------- charts/stable/tvheadend/questions.yaml | 6 ++ charts/stable/tvheadend/values.yaml | 2 - charts/stable/unifi/questions.yaml | 30 ++++++++ charts/stable/unifi/values.yaml | 6 +- charts/stable/uptime-kuma/values.yaml | 1 - charts/stable/valheim/questions.yaml | 25 ++++++- charts/stable/valheim/values.yaml | 3 + charts/stable/vaultwarden/questions.yaml | 6 ++ charts/stable/vaultwarden/values.yaml | 1 + charts/stable/wikijs/questions.yaml | 54 +-------------- charts/stable/zwavejs2mqtt/questions.yaml | 6 ++ charts/stable/zwavejs2mqtt/values.yaml | 2 - 82 files changed, 277 insertions(+), 977 deletions(-) diff --git a/charts/core/k8s-gateway/values.yaml b/charts/core/k8s-gateway/values.yaml index 7976b9e6100..4c93371ef51 100644 --- a/charts/core/k8s-gateway/values.yaml +++ b/charts/core/k8s-gateway/values.yaml @@ -76,7 +76,6 @@ rbac: service: main: - enabled: true ports: main: protocol: UDP diff --git a/charts/core/traefik/values.yaml b/charts/core/traefik/values.yaml index b0de7117027..60c6ab23018 100644 --- a/charts/core/traefik/values.yaml +++ b/charts/core/traefik/values.yaml @@ -136,11 +136,9 @@ tlsOptions: # from. service: main: - enabled: true type: LoadBalancer ports: main: - enabled: true port: 9000 targetPort: 9000 protocol: HTTP diff --git a/charts/dependency/mariadb/values.yaml b/charts/dependency/mariadb/values.yaml index e3dc5660072..f1f010884e2 100644 --- a/charts/dependency/mariadb/values.yaml +++ b/charts/dependency/mariadb/values.yaml @@ -26,7 +26,6 @@ controller: service: main: - enabled: true ports: main: port: 3306 diff --git a/charts/dependency/postgresql/values.yaml b/charts/dependency/postgresql/values.yaml index 9770523f6b4..4eebc7cf8df 100644 --- a/charts/dependency/postgresql/values.yaml +++ b/charts/dependency/postgresql/values.yaml @@ -29,7 +29,6 @@ securityContext: service: main: - enabled: true ports: main: port: 5432 diff --git a/charts/incubator/minio/questions.yaml b/charts/incubator/minio/questions.yaml index ed2f2d2a969..8edaa455026 100644 --- a/charts/incubator/minio/questions.yaml +++ b/charts/incubator/minio/questions.yaml @@ -180,6 +180,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/incubator/minio/values.yaml b/charts/incubator/minio/values.yaml index b65f70756d9..ff7c98e5511 100644 --- a/charts/incubator/minio/values.yaml +++ b/charts/incubator/minio/values.yaml @@ -38,8 +38,10 @@ service: port: 9002 targetPort: 9000 console: + enabled: true ports: console: + enabled: true targetPort: 9001 port: 9001 diff --git a/charts/incubator/omada-controller/values.yaml b/charts/incubator/omada-controller/values.yaml index 7bae106cf93..002fb79ef4a 100644 --- a/charts/incubator/omada-controller/values.yaml +++ b/charts/incubator/omada-controller/values.yaml @@ -40,22 +40,18 @@ service: ports: omada-tcp1: enabled: true - protocol: TCP port: 29810 targetPort: 29810 omada-tcp2: enabled: true - protocol: TCP port: 29811 targetPort: 29811 omada-tcp3: enabled: true - protocol: TCP port: 29812 targetPort: 29812 omada-tcp4: enabled: true - protocol: TCP port: 29813 targetPort: 29813 omada-udp: @@ -73,7 +69,6 @@ service: targetPort: 29811 omada-udp3: enabled: true - protocol: TCP port: 29812 targetPort: 29812 omada-udp4: diff --git a/charts/incubator/tdarr-node/values.yaml b/charts/incubator/tdarr-node/values.yaml index 518c667b051..55c612abfa5 100644 --- a/charts/incubator/tdarr-node/values.yaml +++ b/charts/incubator/tdarr-node/values.yaml @@ -23,7 +23,6 @@ env: service: main: - enabled: true ports: main: targetPort: 8267 diff --git a/charts/incubator/tdarr/questions.yaml b/charts/incubator/tdarr/questions.yaml index 6009925ca23..2d094a69707 100644 --- a/charts/incubator/tdarr/questions.yaml +++ b/charts/incubator/tdarr/questions.yaml @@ -191,6 +191,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/incubator/tdarr/values.yaml b/charts/incubator/tdarr/values.yaml index 9aa9e9c2497..877c37283af 100644 --- a/charts/incubator/tdarr/values.yaml +++ b/charts/incubator/tdarr/values.yaml @@ -21,14 +21,15 @@ env: service: main: - enabled: true ports: main: targetPort: 8265 port: 8265 comm: + enabled: true ports: comm: + enabled: true port: 8266 targetPort: 8266 diff --git a/charts/stable/appdaemon/values.yaml b/charts/stable/appdaemon/values.yaml index 600cbf0854e..46383bfef6b 100644 --- a/charts/stable/appdaemon/values.yaml +++ b/charts/stable/appdaemon/values.yaml @@ -25,13 +25,11 @@ service: targetPort: 5050 tcp: enabled: true - type: ClusterIP ports: tcp: enabled: true port: 51050 targetPort: 51050 - protocol: TCP persistence: conf: diff --git a/charts/stable/aria2/questions.yaml b/charts/stable/aria2/questions.yaml index 7a8acb5cc83..6aa4e17da6d 100644 --- a/charts/stable/aria2/questions.yaml +++ b/charts/stable/aria2/questions.yaml @@ -182,6 +182,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/aria2/values.yaml b/charts/stable/aria2/values.yaml index c98fbf5b54b..3de1d368780 100644 --- a/charts/stable/aria2/values.yaml +++ b/charts/stable/aria2/values.yaml @@ -23,7 +23,6 @@ service: main: ports: main: - enabled: true port: 6800 targetPort: 6800 listen: diff --git a/charts/stable/babybuddy/questions.yaml b/charts/stable/babybuddy/questions.yaml index 6bd0e541566..53570d2dc4c 100644 --- a/charts/stable/babybuddy/questions.yaml +++ b/charts/stable/babybuddy/questions.yaml @@ -160,59 +160,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/calibre/questions.yaml b/charts/stable/calibre/questions.yaml index 19700362e21..2243ab3fdab 100644 --- a/charts/stable/calibre/questions.yaml +++ b/charts/stable/calibre/questions.yaml @@ -187,6 +187,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/calibre/values.yaml b/charts/stable/calibre/values.yaml index 425c32ca191..ecda1f0d00f 100644 --- a/charts/stable/calibre/values.yaml +++ b/charts/stable/calibre/values.yaml @@ -49,14 +49,12 @@ service: port: 8080 targetPort: 8080 webserver: - enabled: false - type: ClusterIP + enabled: true ports: webserver: enabled: true port: 8081 targetPort: 8081 - protocol: TCP # -- Configure persistence settings for the chart under this key. # @default -- See values.yaml diff --git a/charts/stable/deconz/questions.yaml b/charts/stable/deconz/questions.yaml index 99eff37443b..1bf6cf6a4d2 100644 --- a/charts/stable/deconz/questions.yaml +++ b/charts/stable/deconz/questions.yaml @@ -194,6 +194,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -250,6 +256,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/deepstack-cpu/values.yaml b/charts/stable/deepstack-cpu/values.yaml index f5c852a48b2..79853dfda2b 100644 --- a/charts/stable/deepstack-cpu/values.yaml +++ b/charts/stable/deepstack-cpu/values.yaml @@ -7,7 +7,6 @@ image: service: main: - enabled: true ports: main: port: 5000 diff --git a/charts/stable/deepstack-gpu/values.yaml b/charts/stable/deepstack-gpu/values.yaml index 81f24158b87..e66c1a08f9d 100644 --- a/charts/stable/deepstack-gpu/values.yaml +++ b/charts/stable/deepstack-gpu/values.yaml @@ -7,7 +7,6 @@ image: service: main: - enabled: true ports: main: port: 5000 diff --git a/charts/stable/deluge/questions.yaml b/charts/stable/deluge/questions.yaml index f8c8a0e62e8..d312aa07aca 100644 --- a/charts/stable/deluge/questions.yaml +++ b/charts/stable/deluge/questions.yaml @@ -170,6 +170,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -224,6 +230,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/deluge/values.yaml b/charts/stable/deluge/values.yaml index 1bd97a4af5b..63762615e5c 100644 --- a/charts/stable/deluge/values.yaml +++ b/charts/stable/deluge/values.yaml @@ -25,7 +25,6 @@ service: enabled: true port: 51413 targetPort: 51413 - protocol: TCP torrent-udp: enabled: true ports: diff --git a/charts/stable/dsmr-reader/questions.yaml b/charts/stable/dsmr-reader/questions.yaml index 92b10d201d7..ce48e473cb6 100644 --- a/charts/stable/dsmr-reader/questions.yaml +++ b/charts/stable/dsmr-reader/questions.yaml @@ -160,59 +160,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/etherpad/questions.yaml b/charts/stable/etherpad/questions.yaml index 4b116b9b6a5..8a48f2bc2e7 100644 --- a/charts/stable/etherpad/questions.yaml +++ b/charts/stable/etherpad/questions.yaml @@ -160,59 +160,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/external-service/values.yaml b/charts/stable/external-service/values.yaml index e1473b5b54f..f6c6898833c 100644 --- a/charts/stable/external-service/values.yaml +++ b/charts/stable/external-service/values.yaml @@ -10,7 +10,6 @@ controller: service: main: - enabled: true type: ExternalIP externalIP: "1.1.1.1" ports: diff --git a/charts/stable/firefox-syncserver/questions.yaml b/charts/stable/firefox-syncserver/questions.yaml index 79a1c7f8a97..75229dccf69 100644 --- a/charts/stable/firefox-syncserver/questions.yaml +++ b/charts/stable/firefox-syncserver/questions.yaml @@ -213,59 +213,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/gotify/questions.yaml b/charts/stable/gotify/questions.yaml index 0c2f2800b65..4c6600680ce 100644 --- a/charts/stable/gotify/questions.yaml +++ b/charts/stable/gotify/questions.yaml @@ -234,59 +234,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/handbrake/values.yaml b/charts/stable/handbrake/values.yaml index 5be09f224db..9ba821a5d1c 100644 --- a/charts/stable/handbrake/values.yaml +++ b/charts/stable/handbrake/values.yaml @@ -19,7 +19,6 @@ service: targetPort: 5800 vnc: enabled: true - type: ClusterIP ports: vnc: enabled: true diff --git a/charts/stable/hyperion-ng/values.yaml b/charts/stable/hyperion-ng/values.yaml index 0c92bce9308..54e62a2eb41 100644 --- a/charts/stable/hyperion-ng/values.yaml +++ b/charts/stable/hyperion-ng/values.yaml @@ -43,7 +43,6 @@ service: enabled: true port: 19444 targetPort: 19444 - protocol: TCP protobufservice: enabled: true ports: @@ -51,7 +50,6 @@ service: enabled: true port: 19445 targetPort: 19445 - protocol: TCP boblightservice: enabled: true ports: @@ -59,7 +57,6 @@ service: enabled: true port: 19333 targetPort: 19333 - protocol: TCP persistence: config: diff --git a/charts/stable/jackett/values.yaml b/charts/stable/jackett/values.yaml index 68e90392778..5908b4de6be 100644 --- a/charts/stable/jackett/values.yaml +++ b/charts/stable/jackett/values.yaml @@ -10,7 +10,6 @@ securityContext: service: main: - enabled: true protocol: "HTTP" ports: main: diff --git a/charts/stable/joplin-server/questions.yaml b/charts/stable/joplin-server/questions.yaml index 2825a910bae..8561cdb6885 100644 --- a/charts/stable/joplin-server/questions.yaml +++ b/charts/stable/joplin-server/questions.yaml @@ -174,59 +174,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/kanboard/questions.yaml b/charts/stable/kanboard/questions.yaml index 8ad7a826397..93272f5f678 100644 --- a/charts/stable/kanboard/questions.yaml +++ b/charts/stable/kanboard/questions.yaml @@ -171,59 +171,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/kms/values.yaml b/charts/stable/kms/values.yaml index bdc5c705e39..c2376ae6ec1 100644 --- a/charts/stable/kms/values.yaml +++ b/charts/stable/kms/values.yaml @@ -17,6 +17,5 @@ service: main: ports: main: - protocol: TCP port: 1688 targetPort: 1688 diff --git a/charts/stable/littlelink/values.yaml b/charts/stable/littlelink/values.yaml index 6e5a204eba2..94244f1e162 100644 --- a/charts/stable/littlelink/values.yaml +++ b/charts/stable/littlelink/values.yaml @@ -7,7 +7,6 @@ image: service: main: - enabled: true ports: main: port: 3000 diff --git a/charts/stable/logitech-media-server/values.yaml b/charts/stable/logitech-media-server/values.yaml index 9929741bc6b..0540b350b44 100644 --- a/charts/stable/logitech-media-server/values.yaml +++ b/charts/stable/logitech-media-server/values.yaml @@ -33,18 +33,24 @@ service: targetPort: 7000 port: 7000 cli: + enabled: true ports: cli: + enabled: true targetPort: 9090 port: 9090 playertcp: + enabled: true ports: slimprototcp: + enabled: true targetPort: 3483 port: 3483 playerudp: + enabled: true ports: slimprotoudp: + enabled: true targetPort: 3483 port: 3483 diff --git a/charts/stable/miniflux/questions.yaml b/charts/stable/miniflux/questions.yaml index 8bc26d6537c..538a3f89911 100644 --- a/charts/stable/miniflux/questions.yaml +++ b/charts/stable/miniflux/questions.yaml @@ -189,59 +189,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/mosquitto/values.yaml b/charts/stable/mosquitto/values.yaml index a28d86f2522..29656732158 100644 --- a/charts/stable/mosquitto/values.yaml +++ b/charts/stable/mosquitto/values.yaml @@ -14,8 +14,6 @@ service: main: ports: main: - protocol: TCP - enabled: true port: 1883 targetPort: 1883 diff --git a/charts/stable/nextcloud/questions.yaml b/charts/stable/nextcloud/questions.yaml index 59aa221ddbf..5e1346e6ebf 100644 --- a/charts/stable/nextcloud/questions.yaml +++ b/charts/stable/nextcloud/questions.yaml @@ -174,6 +174,24 @@ questions: type: int default: 80 + - variable: serviceexpert + group: "Networking and Services" + label: "Show Expert Config" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostNetwork + group: "Networking and Services" + label: "Host-Networking (Complicated)" + schema: + type: boolean + default: false + +# Include{serviceExpert} + +# Include{serviceList} - variable: persistence label: "Integrated Persistent Storage" diff --git a/charts/stable/nullserv/questions.yaml b/charts/stable/nullserv/questions.yaml index ba37a910f24..913d4cd0ee4 100644 --- a/charts/stable/nullserv/questions.yaml +++ b/charts/stable/nullserv/questions.yaml @@ -156,6 +156,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/nullserv/values.yaml b/charts/stable/nullserv/values.yaml index ae80830bafb..684fb834c6a 100644 --- a/charts/stable/nullserv/values.yaml +++ b/charts/stable/nullserv/values.yaml @@ -34,8 +34,6 @@ env: # @default -- See values.yaml service: main: - primary: true - type: NodePort ports: main: port: 80 diff --git a/charts/stable/odoo/questions.yaml b/charts/stable/odoo/questions.yaml index 6373e5868d2..d0f011641e9 100644 --- a/charts/stable/odoo/questions.yaml +++ b/charts/stable/odoo/questions.yaml @@ -158,6 +158,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -200,13 +206,17 @@ questions: schema: type: int default: 8071 - - - variable: odoo-2 label: "Odoo-2 Service Port Configuration" schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -265,59 +275,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/odoo/values.yaml b/charts/stable/odoo/values.yaml index 891a9591793..a1051e99008 100644 --- a/charts/stable/odoo/values.yaml +++ b/charts/stable/odoo/values.yaml @@ -32,15 +32,16 @@ service: port: 8069 targetPort: 8069 odoo: + enabled: true ports: odoo-1: + enabled: true port: 8071 targetPort: 8071 - protocol: TCP odoo-2: + enabled: true port: 8072 targetPort: 8072 - protocol: TCP persistence: odoo: diff --git a/charts/stable/openkm/questions.yaml b/charts/stable/openkm/questions.yaml index 3075e9ab261..b172247bf67 100644 --- a/charts/stable/openkm/questions.yaml +++ b/charts/stable/openkm/questions.yaml @@ -160,59 +160,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/openkm/values.yaml b/charts/stable/openkm/values.yaml index 413ca8bfbe8..50fc3fc410c 100644 --- a/charts/stable/openkm/values.yaml +++ b/charts/stable/openkm/values.yaml @@ -34,7 +34,6 @@ env: # @default -- See values.yaml service: main: - enabled: true ports: main: port: 8080 diff --git a/charts/stable/openldap/questions.yaml b/charts/stable/openldap/questions.yaml index 2ed2e4c6e99..1f2df03dd4e 100644 --- a/charts/stable/openldap/questions.yaml +++ b/charts/stable/openldap/questions.yaml @@ -277,6 +277,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/oscam/questions.yaml b/charts/stable/oscam/questions.yaml index f37d72382b3..39ea5400917 100644 --- a/charts/stable/oscam/questions.yaml +++ b/charts/stable/oscam/questions.yaml @@ -156,7 +156,6 @@ questions: description: "This port gets exposed to the node. Only considered when service type is NodePort" schema: type: int - min: 9000 max: 65535 diff --git a/charts/stable/oscam/values.yaml b/charts/stable/oscam/values.yaml index 467a4d14860..d80703269a8 100644 --- a/charts/stable/oscam/values.yaml +++ b/charts/stable/oscam/values.yaml @@ -18,7 +18,6 @@ env: service: main: - enabled: true ports: main: port: 8888 diff --git a/charts/stable/owncast/questions.yaml b/charts/stable/owncast/questions.yaml index 29657e5cc3d..d6fa69ed841 100644 --- a/charts/stable/owncast/questions.yaml +++ b/charts/stable/owncast/questions.yaml @@ -157,6 +157,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/owncast/values.yaml b/charts/stable/owncast/values.yaml index fcd89e728cb..39bbd0f5ba0 100644 --- a/charts/stable/owncast/values.yaml +++ b/charts/stable/owncast/values.yaml @@ -31,14 +31,13 @@ service: targetPort: 8080 rtmp: enabled: true - type: NodePort externalTrafficPolicy: Local ports: rtmp: enabled: true port: 1935 targetPort: 1935 - protocol: TCP + # -- Configure persistence settings for the chart under this key. # @default -- See values.yaml diff --git a/charts/stable/pgadmin/values.yaml b/charts/stable/pgadmin/values.yaml index 3c75e78a71f..c5270af1c5c 100644 --- a/charts/stable/pgadmin/values.yaml +++ b/charts/stable/pgadmin/values.yaml @@ -16,7 +16,6 @@ podSecurityContext: service: main: - enabled: true ports: main: port: 80 diff --git a/charts/stable/phpldapadmin/values.yaml b/charts/stable/phpldapadmin/values.yaml index acc4ac085e2..31830daa182 100644 --- a/charts/stable/phpldapadmin/values.yaml +++ b/charts/stable/phpldapadmin/values.yaml @@ -15,7 +15,6 @@ podSecurityContext: service: main: - enabled: true ports: main: port: 80 diff --git a/charts/stable/pihole/questions.yaml b/charts/stable/pihole/questions.yaml index fff8bcb694d..8eecdb59758 100644 --- a/charts/stable/pihole/questions.yaml +++ b/charts/stable/pihole/questions.yaml @@ -194,6 +194,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -249,6 +255,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -292,7 +304,6 @@ questions: type: int default: 53 - - variable: serviceexpert group: "Networking and Services" label: "Show Expert Config" diff --git a/charts/stable/pihole/values.yaml b/charts/stable/pihole/values.yaml index ffc73f6dcb9..81e5deb48e2 100644 --- a/charts/stable/pihole/values.yaml +++ b/charts/stable/pihole/values.yaml @@ -20,7 +20,6 @@ envFrom: service: main: - enabled: true ports: main: port: 9089 @@ -29,7 +28,6 @@ service: enabled: true ports: dns-tcp: - protocol: TCP enabled: true port: 53 targetPort: 53 @@ -37,8 +35,8 @@ service: enabled: true ports: dns: - protocol: UDP enabled: true + protocol: UDP port: 53 targetPort: 53 diff --git a/charts/stable/podgrab/values.yaml b/charts/stable/podgrab/values.yaml index b750f01e6cf..598ee8572f1 100644 --- a/charts/stable/podgrab/values.yaml +++ b/charts/stable/podgrab/values.yaml @@ -13,16 +13,14 @@ service: targetPort: 8080 tcp: enabled: true - type: ClusterIP ports: tcp: enabled: true port: 51080 targetPort: 51080 - protocol: TCP env: - PASSWORD: secretpasswordgoeshere + PASSWORD: "secretpasswordgoeshere" CHECK_FREQUENCY: 240 persistence: diff --git a/charts/stable/protonmail-bridge/values.yaml b/charts/stable/protonmail-bridge/values.yaml index bf37a4e06b4..002c6aa677f 100644 --- a/charts/stable/protonmail-bridge/values.yaml +++ b/charts/stable/protonmail-bridge/values.yaml @@ -31,12 +31,15 @@ env: # @default -- See values.yaml service: main: + enabled: false ports: main: enabled: false + smtp: + enabled: true + ports: smtp: enabled: true - protocol: TCP port: 25 targetPort: 25 diff --git a/charts/stable/qbittorrent/questions.yaml b/charts/stable/qbittorrent/questions.yaml index 7d5ea75ee18..99071d13fff 100644 --- a/charts/stable/qbittorrent/questions.yaml +++ b/charts/stable/qbittorrent/questions.yaml @@ -157,6 +157,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -212,6 +218,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/qbittorrent/values.yaml b/charts/stable/qbittorrent/values.yaml index 5c535cf5221..40b0f58fcd7 100644 --- a/charts/stable/qbittorrent/values.yaml +++ b/charts/stable/qbittorrent/values.yaml @@ -27,7 +27,6 @@ service: enabled: true port: 6881 targetPort: 6881 - protocol: TCP torrentudp: enabled: true ports: diff --git a/charts/stable/recipes/questions.yaml b/charts/stable/recipes/questions.yaml index c62090c0df1..d25f1f23857 100644 --- a/charts/stable/recipes/questions.yaml +++ b/charts/stable/recipes/questions.yaml @@ -207,59 +207,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/resilio-sync/questions.yaml b/charts/stable/resilio-sync/questions.yaml index b4fbc4178bf..a64acacdebf 100644 --- a/charts/stable/resilio-sync/questions.yaml +++ b/charts/stable/resilio-sync/questions.yaml @@ -164,6 +164,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -220,6 +226,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/resilio-sync/values.yaml b/charts/stable/resilio-sync/values.yaml index 80a00824f44..1aa33a12a37 100644 --- a/charts/stable/resilio-sync/values.yaml +++ b/charts/stable/resilio-sync/values.yaml @@ -39,17 +39,14 @@ service: port: 8888 targetPort: 8888 bt-tcp: - enabled: false - type: ClusterIP + enabled: true ports: bt-tcp: enabled: true port: 55555 targetPort: 55555 - protocol: TCP bt-udp: - enabled: false - type: ClusterIP + enabled: true ports: bt-udp: enabled: true diff --git a/charts/stable/ser2sock/values.yaml b/charts/stable/ser2sock/values.yaml index 54becd4b46e..4ac04671089 100644 --- a/charts/stable/ser2sock/values.yaml +++ b/charts/stable/ser2sock/values.yaml @@ -31,8 +31,6 @@ service: main: ports: main: - enabled: true - protocol: TCP port: 10000 targetPort: 10000 diff --git a/charts/stable/shiori/questions.yaml b/charts/stable/shiori/questions.yaml index 129feed222b..337483be67a 100644 --- a/charts/stable/shiori/questions.yaml +++ b/charts/stable/shiori/questions.yaml @@ -165,59 +165,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/statping/questions.yaml b/charts/stable/statping/questions.yaml index 8758bad0039..ab337f5151b 100644 --- a/charts/stable/statping/questions.yaml +++ b/charts/stable/statping/questions.yaml @@ -212,59 +212,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/syncthing/values.yaml b/charts/stable/syncthing/values.yaml index 640143ae69c..3669bf0d872 100644 --- a/charts/stable/syncthing/values.yaml +++ b/charts/stable/syncthing/values.yaml @@ -12,13 +12,14 @@ service: port: 8384 targetPort: 8384 listeners: + enabled: true ports: tcp: enabled: true port: 22000 targetPort: 22000 - protocol: TCP listeners-udp: + enabled: true ports: udp: enabled: true @@ -26,6 +27,7 @@ service: targetPort: 22000 protocol: UDP discovery: + enabled: true ports: discovery: enabled: true diff --git a/charts/stable/teamspeak3/questions.yaml b/charts/stable/teamspeak3/questions.yaml index f093bde4273..3396e8df347 100644 --- a/charts/stable/teamspeak3/questions.yaml +++ b/charts/stable/teamspeak3/questions.yaml @@ -159,6 +159,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -215,6 +221,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/teamspeak3/values.yaml b/charts/stable/teamspeak3/values.yaml index 6a6ef00be58..b0c7266bb50 100644 --- a/charts/stable/teamspeak3/values.yaml +++ b/charts/stable/teamspeak3/values.yaml @@ -18,11 +18,8 @@ podSecurityContext: # 30033 file transport service: main: - enabled: true - type: ClusterIP ports: main: - enabled: true port: 10011 targetPort: 10011 protocol: "TCP" @@ -36,7 +33,6 @@ service: protocol: "UDP" files: enabled: true - type: ClusterIP ports: files: enabled: true diff --git a/charts/stable/teedy/questions.yaml b/charts/stable/teedy/questions.yaml index 63475e02efb..570bedd4cb1 100644 --- a/charts/stable/teedy/questions.yaml +++ b/charts/stable/teedy/questions.yaml @@ -214,59 +214,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/traccar/questions.yaml b/charts/stable/traccar/questions.yaml index 34146e67880..e603257c551 100644 --- a/charts/stable/traccar/questions.yaml +++ b/charts/stable/traccar/questions.yaml @@ -172,59 +172,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/transmission/questions.yaml b/charts/stable/transmission/questions.yaml index e1f4d1e1c02..35cce2c44a3 100644 --- a/charts/stable/transmission/questions.yaml +++ b/charts/stable/transmission/questions.yaml @@ -499,6 +499,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -554,6 +560,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/transmission/values.yaml b/charts/stable/transmission/values.yaml index a8366881d50..4e28fbcb2e2 100644 --- a/charts/stable/transmission/values.yaml +++ b/charts/stable/transmission/values.yaml @@ -18,7 +18,6 @@ service: enabled: true port: 51413 targetPort: 51413 - protocol: TCP torrentudp: enabled: true ports: diff --git a/charts/stable/tt-rss/questions.yaml b/charts/stable/tt-rss/questions.yaml index 6cb74f5b79e..61a40641cbe 100644 --- a/charts/stable/tt-rss/questions.yaml +++ b/charts/stable/tt-rss/questions.yaml @@ -165,59 +165,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/tvheadend/questions.yaml b/charts/stable/tvheadend/questions.yaml index 7fdb0b456ba..720adad5df5 100644 --- a/charts/stable/tvheadend/questions.yaml +++ b/charts/stable/tvheadend/questions.yaml @@ -164,6 +164,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/tvheadend/values.yaml b/charts/stable/tvheadend/values.yaml index 4e3f11ea151..8533529ac18 100644 --- a/charts/stable/tvheadend/values.yaml +++ b/charts/stable/tvheadend/values.yaml @@ -26,13 +26,11 @@ service: targetPort: 9981 htsp: enabled: true - type: ClusterIP ports: htsp: enabled: true port: 9982 targetPort: 9982 - protocol: TCP persistence: config: diff --git a/charts/stable/unifi/questions.yaml b/charts/stable/unifi/questions.yaml index 516f11c6a3d..39899687066 100644 --- a/charts/stable/unifi/questions.yaml +++ b/charts/stable/unifi/questions.yaml @@ -164,6 +164,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -219,6 +225,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -274,6 +286,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -329,6 +347,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -377,6 +401,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/unifi/values.yaml b/charts/stable/unifi/values.yaml index 46b71916e26..f706f05ca1a 100644 --- a/charts/stable/unifi/values.yaml +++ b/charts/stable/unifi/values.yaml @@ -24,7 +24,6 @@ service: enabled: true port: 8080 targetPort: 8080 - protocol: TCP stun: enabled: true ports: @@ -34,15 +33,14 @@ service: targetPort: 3478 protocol: UDP speedtest: - enabled: false + enabled: true ports: speedtest: enabled: true port: 6789 targetPort: 6789 - protocol: TCP guestportal: - enabled: false + enabled: true ports: web: enabled: true diff --git a/charts/stable/uptime-kuma/values.yaml b/charts/stable/uptime-kuma/values.yaml index c08ecd56217..ed28a21b4a4 100644 --- a/charts/stable/uptime-kuma/values.yaml +++ b/charts/stable/uptime-kuma/values.yaml @@ -14,7 +14,6 @@ podSecurityContext: service: main: - enabled: true ports: main: port: 3001 diff --git a/charts/stable/valheim/questions.yaml b/charts/stable/valheim/questions.yaml index 637c19bc1e1..f32793a1835 100644 --- a/charts/stable/valheim/questions.yaml +++ b/charts/stable/valheim/questions.yaml @@ -253,6 +253,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -309,6 +315,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -357,6 +369,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -405,6 +423,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" @@ -448,7 +472,6 @@ questions: type: int default: 2458 - - variable: serviceexpert group: "Networking and Services" label: "Show Expert Config" diff --git a/charts/stable/valheim/values.yaml b/charts/stable/valheim/values.yaml index b330c22b010..c799d929774 100644 --- a/charts/stable/valheim/values.yaml +++ b/charts/stable/valheim/values.yaml @@ -45,11 +45,14 @@ service: port: 9010 targetPort: 9010 supervisor: + enabled: true ports: supervisor: + enabled: true port: 9011 targetPort: 9011 valheim: + enabled: true type: LoadBalancer ports: valheim-1: diff --git a/charts/stable/vaultwarden/questions.yaml b/charts/stable/vaultwarden/questions.yaml index ad89088a796..cfcdbaa49d8 100644 --- a/charts/stable/vaultwarden/questions.yaml +++ b/charts/stable/vaultwarden/questions.yaml @@ -452,6 +452,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/vaultwarden/values.yaml b/charts/stable/vaultwarden/values.yaml index cad0abf6ea3..01f45345c8a 100644 --- a/charts/stable/vaultwarden/values.yaml +++ b/charts/stable/vaultwarden/values.yaml @@ -12,6 +12,7 @@ service: port: 8080 targetPort: 8080 ws: + enabled: true ports: ws: enabled: true diff --git a/charts/stable/wikijs/questions.yaml b/charts/stable/wikijs/questions.yaml index c6b5f1b28b5..ac476d5d16b 100644 --- a/charts/stable/wikijs/questions.yaml +++ b/charts/stable/wikijs/questions.yaml @@ -165,59 +165,7 @@ questions: type: boolean default: false - - variable: dnsPolicy - group: "Networking and Services" - label: "dnsPolicy" - schema: - type: string - default: "" - enum: - - value: "" - description: "Default" - - value: "ClusterFirst" - description: "ClusterFirst" - - value: "ClusterFirstWithHostNet" - description: "ClusterFirstWithHostNet" - - value: "None" - description: "None" - - - variable: dnsConfig - label: "DNS Configuration" - group: "Networking and Services" - description: "Specify custom DNS configuration which will be applied to the pod" - schema: - type: dict - attrs: - - variable: nameservers - label: "Nameservers" - schema: - default: [] - type: list - items: - - variable: nameserver - label: "Nameserver" - schema: - type: string - - variable: options - label: "options" - schema: - default: [] - type: list - items: - - variable: option - label: "Option Entry" - schema: - type: string - - variable: searches - label: "Searches" - schema: - default: [] - type: list - items: - - variable: search - label: "Search Entry" - schema: - type: string +# Include{serviceExpert} # Include{serviceList} diff --git a/charts/stable/zwavejs2mqtt/questions.yaml b/charts/stable/zwavejs2mqtt/questions.yaml index fe54a78de63..f11fb2699ff 100644 --- a/charts/stable/zwavejs2mqtt/questions.yaml +++ b/charts/stable/zwavejs2mqtt/questions.yaml @@ -156,6 +156,12 @@ questions: schema: type: dict attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true - variable: port label: "Port" description: "This port exposes the container port on the service" diff --git a/charts/stable/zwavejs2mqtt/values.yaml b/charts/stable/zwavejs2mqtt/values.yaml index 4023069a36e..ee978dc7034 100644 --- a/charts/stable/zwavejs2mqtt/values.yaml +++ b/charts/stable/zwavejs2mqtt/values.yaml @@ -67,13 +67,11 @@ service: targetPort: 8091 ws: enabled: true - type: ClusterIP ports: ws: enabled: true port: 3000 targetPort: 3000 - protocol: TCP persistence: config: