diff --git a/incubator/testbed/7.0.0/CHANGELOG.md b/incubator/testbed/7.0.0/CHANGELOG.md deleted file mode 100644 index ee15d17644..0000000000 --- a/incubator/testbed/7.0.0/CHANGELOG.md +++ /dev/null @@ -1,4 +0,0 @@ - - -### [testbed-7.0.0](https://github.com/truecharts/apps/compare/testbed-6.11.22...testbed-7.0.0) (2021-09-12) - diff --git a/incubator/testbed/7.0.1/CHANGELOG.md b/incubator/testbed/7.0.1/CHANGELOG.md new file mode 100644 index 0000000000..c4214fb77d --- /dev/null +++ b/incubator/testbed/7.0.1/CHANGELOG.md @@ -0,0 +1,4 @@ + + +### [testbed-7.0.1](https://github.com/truecharts/apps/compare/testbed-7.0.0...testbed-7.0.1) (2021-09-12) + diff --git a/incubator/testbed/7.0.0/CONFIG.md b/incubator/testbed/7.0.1/CONFIG.md similarity index 100% rename from incubator/testbed/7.0.0/CONFIG.md rename to incubator/testbed/7.0.1/CONFIG.md diff --git a/incubator/testbed/7.0.0/Chart.lock b/incubator/testbed/7.0.1/Chart.lock similarity index 78% rename from incubator/testbed/7.0.0/Chart.lock rename to incubator/testbed/7.0.1/Chart.lock index d0b71e45fc..dd7bb134a0 100644 --- a/incubator/testbed/7.0.0/Chart.lock +++ b/incubator/testbed/7.0.1/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 7.0.4 digest: sha256:a99a1463f60273d2be558f311ff2136723b29f39cde9f008d6f39e0a990b9bde -generated: "2021-09-12T15:46:41.811812241Z" +generated: "2021-09-12T16:01:56.07589687Z" diff --git a/incubator/testbed/7.0.0/Chart.yaml b/incubator/testbed/7.0.1/Chart.yaml similarity index 97% rename from incubator/testbed/7.0.0/Chart.yaml rename to incubator/testbed/7.0.1/Chart.yaml index 86fe6a1ecb..30d8ec3ed7 100644 --- a/incubator/testbed/7.0.0/Chart.yaml +++ b/incubator/testbed/7.0.1/Chart.yaml @@ -24,4 +24,4 @@ name: testbed sources: - https://github.com/Jackett/Jackett type: application -version: 7.0.0 +version: 7.0.1 diff --git a/incubator/testbed/7.0.0/README.md b/incubator/testbed/7.0.1/README.md similarity index 100% rename from incubator/testbed/7.0.0/README.md rename to incubator/testbed/7.0.1/README.md diff --git a/incubator/testbed/7.0.0/app-readme.md b/incubator/testbed/7.0.1/app-readme.md similarity index 100% rename from incubator/testbed/7.0.0/app-readme.md rename to incubator/testbed/7.0.1/app-readme.md diff --git a/incubator/testbed/7.0.0/charts/common-7.0.4.tgz b/incubator/testbed/7.0.1/charts/common-7.0.4.tgz similarity index 100% rename from incubator/testbed/7.0.0/charts/common-7.0.4.tgz rename to incubator/testbed/7.0.1/charts/common-7.0.4.tgz diff --git a/incubator/testbed/7.0.0/helm-values.md b/incubator/testbed/7.0.1/helm-values.md similarity index 100% rename from incubator/testbed/7.0.0/helm-values.md rename to incubator/testbed/7.0.1/helm-values.md diff --git a/incubator/testbed/7.0.0/ix_values.yaml b/incubator/testbed/7.0.1/ix_values.yaml similarity index 100% rename from incubator/testbed/7.0.0/ix_values.yaml rename to incubator/testbed/7.0.1/ix_values.yaml diff --git a/incubator/testbed/7.0.0/questions.yaml b/incubator/testbed/7.0.1/questions.yaml similarity index 99% rename from incubator/testbed/7.0.0/questions.yaml rename to incubator/testbed/7.0.1/questions.yaml index 05a526d6ae..3b3c43383b 100644 --- a/incubator/testbed/7.0.0/questions.yaml +++ b/incubator/testbed/7.0.1/questions.yaml @@ -298,6 +298,187 @@ questions: max: 65535 default: 36009 + - variable: serviceexpert + group: "Advanced" + label: "Show Expert Config" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostNetwork + group: "Advanced" + label: "Host-Networking (Complicated)" + schema: + type: boolean + default: false + + - variable: dnsPolicy + group: "Advanced" + 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: "Advanced" + 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 + + + + - variable: serviceList + label: "Add Manual Custom Services" + group: "Advanced" + schema: + type: list + default: [] + items: + - variable: serviceListEntry + label: "Custom Service" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the service" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Name" + schema: + type: string + default: "" + - 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: "NodePort" + enum: + - value: "NodePort" + description: "NodePort" + - value: "ClusterIP" + description: "ClusterIP" + - value: "LoadBalancer" + description: "LoadBalancer" + - 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: portsList + label: "Additional Service Ports" + schema: + type: list + default: [] + items: + - variable: portsListEntry + label: "Custom ports" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Port Name" + schema: + type: string + default: "" + - 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: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + required: true + - variable: port + label: "Container Port" + schema: + type: int + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + - variable: persistence label: "Integrated Persistent Storage" group: "Storage and Persistence" @@ -1113,176 +1294,7 @@ questions: type: int default: 10 - - variable: dnsPolicy - group: "Advanced" - 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: "Advanced" - 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 - - - variable: hostNetwork - group: "Advanced" - label: "Host-Networking (Complicated)" - schema: - type: boolean - default: false - - - variable: serviceList - label: "Add Manual Custom Services" - group: "Advanced" - schema: - type: list - default: [] - items: - - variable: serviceListEntry - label: "Custom Service" - schema: - type: dict - attrs: - - variable: enabled - label: "Enable the service" - schema: - type: boolean - default: true - hidden: true - - variable: name - label: "Name" - schema: - type: string - default: "" - - 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: "NodePort" - enum: - - value: "NodePort" - description: "NodePort" - - value: "ClusterIP" - description: "ClusterIP" - - value: "LoadBalancer" - description: "LoadBalancer" - - 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: portsList - label: "Additional Service Ports" - schema: - type: list - default: [] - items: - - variable: portsListEntry - label: "Custom ports" - schema: - type: dict - attrs: - - variable: enabled - label: "Enable the port" - schema: - type: boolean - default: true - hidden: true - - variable: name - label: "Port Name" - schema: - type: string - default: "" - - 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: targetPort - label: "Target Port" - description: "This port exposes the container port on the service" - schema: - type: int - required: true - - variable: port - label: "Container Port" - schema: - type: int - required: true - - variable: nodePort - label: "Node Port (Optional)" - 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/incubator/testbed/7.0.0/templates/common.yaml b/incubator/testbed/7.0.1/templates/common.yaml similarity index 100% rename from incubator/testbed/7.0.0/templates/common.yaml rename to incubator/testbed/7.0.1/templates/common.yaml diff --git a/incubator/testbed/7.0.0/test_values.yaml b/incubator/testbed/7.0.1/test_values.yaml similarity index 100% rename from incubator/testbed/7.0.0/test_values.yaml rename to incubator/testbed/7.0.1/test_values.yaml diff --git a/incubator/testbed/7.0.0/values.yaml b/incubator/testbed/7.0.1/values.yaml similarity index 100% rename from incubator/testbed/7.0.0/values.yaml rename to incubator/testbed/7.0.1/values.yaml