chore(deps): update container image tccr.io/truecharts/mosdns to v4.1.3 (#3035)

* chore(deps): update container image tccr.io/truecharts/mosdns to v4.1.3

* Commit bumped App Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

* add tcp dns aswell

* don't update image

Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
TrueCharts Bot
2022-07-10 12:49:29 +02:00
committed by GitHub
parent aba2aa0a7c
commit f839a9e708
3 changed files with 63 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: mosdns
version: 2.0.10
version: 2.0.11
appVersion: "3.9.0"
description: A location-based pluggable DNS forwarder/splitter.
type: application

View File

@@ -71,6 +71,61 @@ questions:
attrs:
# Include{serviceSelector}
- variable: main
label: "DNS Service Port Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: port
label: "Port"
description: "This port exposes the container port on the service"
schema:
type: int
default: 53
required: true
- variable: advanced
label: "Show Advanced settings"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: protocol
label: "Port Type"
schema:
type: string
default: "TCP"
enum:
- value: HTTP
description: "HTTP"
- value: "HTTPS"
description: "HTTPS"
- value: TCP
description: "TCP"
- value: "UDP"
description: "UDP"
- variable: nodePort
label: "Node Port (Optional)"
description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer"
schema:
type: int
min: 9000
max: 65535
- variable: targetPort
label: "Target Port"
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 53
- variable: dns-udp
label: "DNS Service"
description: "The Primary service on which the healthcheck runs, often the webUI"
schema:
additional_attrs: true
type: dict
attrs:
# Include{serviceSelector}
- variable: dns-udp
label: "DNS Service Port Configuration"
schema:
additional_attrs: true

View File

@@ -15,6 +15,13 @@ service:
main:
ports:
main:
targetPort: 53
port: 53
dns-udp:
enabled: true
ports:
dns-upd:
enabled: true
protocol: UDP
targetPort: 53
port: 53