diff --git a/stable/mosdns/2.0.10/CHANGELOG.md b/stable/mosdns/2.0.11/CHANGELOG.md similarity index 90% rename from stable/mosdns/2.0.10/CHANGELOG.md rename to stable/mosdns/2.0.11/CHANGELOG.md index 8ac70a38400..bc974f87cae 100644 --- a/stable/mosdns/2.0.10/CHANGELOG.md +++ b/stable/mosdns/2.0.11/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [mosdns-2.0.11](https://github.com/truecharts/apps/compare/mosdns-2.0.10...mosdns-2.0.11) (2022-07-10) + +#### Chore + +* update container image tccr.io/truecharts/mosdns to v4.1.3 ([#3035](https://github.com/truecharts/apps/issues/3035)) + + + ### [mosdns-2.0.10](https://github.com/truecharts/apps/compare/mosdns-2.0.9...mosdns-2.0.10) (2022-07-09) @@ -88,12 +97,3 @@ #### Chore -* Auto-update chart README [skip ci] -* sync all apps persistence configuration and always default to PVC -* update docker general non-major ([#2831](https://github.com/truecharts/apps/issues/2831)) - -#### Fix - -* remove malfunctioning SCALE migration script - -#### Refactor diff --git a/stable/mosdns/2.0.10/Chart.lock b/stable/mosdns/2.0.11/Chart.lock similarity index 80% rename from stable/mosdns/2.0.10/Chart.lock rename to stable/mosdns/2.0.11/Chart.lock index 015c26651ce..ff3ae08feb4 100644 --- a/stable/mosdns/2.0.10/Chart.lock +++ b/stable/mosdns/2.0.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://library-charts.truecharts.org version: 10.2.1 digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690 -generated: "2022-07-09T20:14:33.929225994Z" +generated: "2022-07-10T10:51:17.342061995Z" diff --git a/stable/mosdns/2.0.10/Chart.yaml b/stable/mosdns/2.0.11/Chart.yaml similarity index 97% rename from stable/mosdns/2.0.10/Chart.yaml rename to stable/mosdns/2.0.11/Chart.yaml index cc9be0af0b3..73499b66ac1 100644 --- a/stable/mosdns/2.0.10/Chart.yaml +++ b/stable/mosdns/2.0.11/Chart.yaml @@ -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 diff --git a/stable/mosdns/2.0.10/README.md b/stable/mosdns/2.0.11/README.md similarity index 100% rename from stable/mosdns/2.0.10/README.md rename to stable/mosdns/2.0.11/README.md diff --git a/stable/mosdns/2.0.10/app-readme.md b/stable/mosdns/2.0.11/app-readme.md similarity index 100% rename from stable/mosdns/2.0.10/app-readme.md rename to stable/mosdns/2.0.11/app-readme.md diff --git a/stable/mosdns/2.0.10/charts/common-10.2.1.tgz b/stable/mosdns/2.0.11/charts/common-10.2.1.tgz similarity index 100% rename from stable/mosdns/2.0.10/charts/common-10.2.1.tgz rename to stable/mosdns/2.0.11/charts/common-10.2.1.tgz diff --git a/stable/mosdns/2.0.10/ix_values.yaml b/stable/mosdns/2.0.11/ix_values.yaml similarity index 79% rename from stable/mosdns/2.0.10/ix_values.yaml rename to stable/mosdns/2.0.11/ix_values.yaml index 112293bcb28..66ec0bebf35 100644 --- a/stable/mosdns/2.0.10/ix_values.yaml +++ b/stable/mosdns/2.0.11/ix_values.yaml @@ -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 diff --git a/stable/mosdns/2.0.10/questions.yaml b/stable/mosdns/2.0.11/questions.yaml similarity index 94% rename from stable/mosdns/2.0.10/questions.yaml rename to stable/mosdns/2.0.11/questions.yaml index e939cc93dc6..baa1fe582f9 100644 --- a/stable/mosdns/2.0.10/questions.yaml +++ b/stable/mosdns/2.0.11/questions.yaml @@ -343,6 +343,132 @@ questions: type: dict attrs: - 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: + - variable: enabled + label: "Enable the service" + schema: + type: boolean + default: true + hidden: true + - variable: type + label: "Service Type" + description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer" + schema: + type: string + default: "Simple" + enum: + - value: "Simple" + description: "Simple" + - value: "ClusterIP" + description: "ClusterIP" + - value: "NodePort" + description: "NodePort (Advanced)" + - value: "LoadBalancer" + description: "LoadBalancer (Advanced)" + - variable: loadBalancerIP + label: "LoadBalancer IP" + description: "LoadBalancerIP" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: string + default: "" + - variable: externalIPs + label: "External IP's" + description: "External IP's" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: list + default: [] + items: + - variable: externalIP + label: "External IP" + schema: + type: string + - variable: ipFamilyPolicy + label: "IP Family Policy" + description: "(Advanced) Specify the ip policy" + schema: + show_if: [["type", "!=", "Simple"]] + type: string + default: "SingleStack" + enum: + - value: "SingleStack" + description: "SingleStack" + - value: "PreferDualStack" + description: "PreferDualStack" + - value: "RequireDualStack" + description: "RequireDualStack" + - variable: ipFamilies + label: "(advanced) IP families" + description: "(advanced) The ip families that should be used" + schema: + show_if: [["type", "!=", "Simple"]] + type: list + default: [] + items: + - variable: ipFamily + label: "IP family" + schema: + type: string + - variable: ports + label: "Service's Port(s) Configuration" + schema: + additional_attrs: true + type: dict + attrs: + - variable: dns-udp label: "DNS Service Port Configuration" schema: additional_attrs: true diff --git a/stable/mosdns/2.0.10/templates/common.yaml b/stable/mosdns/2.0.11/templates/common.yaml similarity index 100% rename from stable/mosdns/2.0.10/templates/common.yaml rename to stable/mosdns/2.0.11/templates/common.yaml diff --git a/stable/mosdns/2.0.10/values.yaml b/stable/mosdns/2.0.11/values.yaml similarity index 100% rename from stable/mosdns/2.0.10/values.yaml rename to stable/mosdns/2.0.11/values.yaml