diff --git a/charts/incubator/it-tools/Chart.yaml b/charts/incubator/it-tools/Chart.yaml new file mode 100644 index 00000000000..b3195d6ec34 --- /dev/null +++ b/charts/incubator/it-tools/Chart.yaml @@ -0,0 +1,27 @@ +apiVersion: v2 +appVersion: "2023.8.16-9bd4ad4" +dependencies: + - name: common + repository: https://library-charts.truecharts.org + version: 14.0.1 +deprecated: false +description: Useful tools for developer and people working in IT. +home: https://truecharts.org/charts/incubator/it-tools +icon: https://truecharts.org/img/hotlink-ok/chart-icons/it-tools.png +keywords: + - it-tools +kubeVersion: ">=1.16.0-0" +maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: it-tools +sources: + - https://github.com/truecharts/charts/tree/master/charts/incubator/it-tools + - https://github.com/CorentinTh/it-tools +type: application +version: 1.0.0 +annotations: + truecharts.org/catagories: | + - tools + truecharts.org/SCALE-support: "true" diff --git a/charts/incubator/it-tools/README.md b/charts/incubator/it-tools/README.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/charts/incubator/it-tools/icon.png b/charts/incubator/it-tools/icon.png new file mode 100644 index 00000000000..18bac950808 Binary files /dev/null and b/charts/incubator/it-tools/icon.png differ diff --git a/charts/incubator/it-tools/questions.yaml b/charts/incubator/it-tools/questions.yaml new file mode 100644 index 00000000000..695dbae2c79 --- /dev/null +++ b/charts/incubator/it-tools/questions.yaml @@ -0,0 +1,83 @@ +# Include{groups} +portals: + open: +# Include{portalLink} +questions: +# Include{global} +# Include{workload} +# Include{workloadDeployment} + +# Include{replicas1} +# Include{podSpec} +# Include{containerMain} + + +# Include{containerBasic} +# Include{containerAdvanced} + +# Include{containerConfig} +# Include{podOptions} +# Include{serviceRoot} +# Include{serviceMain} +# Include{serviceSelectorLoadBalancer} +# Include{serviceSelectorExtras} + - variable: main + label: "Main 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: 18082 + required: true +# Include{serviceExpertRoot} +# Include{serviceExpert} +# Include{serviceList} +# Include{persistenceList} +# Include{ingressRoot} + - variable: main + label: "Main Ingress" + schema: + additional_attrs: true + type: dict + attrs: +# Include{ingressDefault} +# Include{ingressTLS} +# Include{ingressTraefik} +# Include{ingressAdvanced} +# Include{ingressList} +# Include{securityContextRoot} + + - variable: runAsUser + label: "runAsUser" + description: "The UserID of the user running the application" + schema: + type: int + default: 568 + - variable: runAsGroup + label: "runAsGroup" + description: "The groupID this App of the user running the application" + schema: + type: int + default: 568 +# Include{securityContextContainer} +# Include{securityContextAdvanced} +# Include{securityContextPod} + - variable: fsGroup + label: "fsGroup" + description: "The group that should own ALL storage." + schema: + type: int + default: 568 + +# Include{resources} +# Include{advanced} +# Include{addons} +# Include{codeserver} +# Include{netshoot} +# Include{vpn} +# Include{documentation} diff --git a/charts/incubator/it-tools/templates/NOTES.txt b/charts/incubator/it-tools/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/incubator/it-tools/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/it-tools/templates/common.yaml b/charts/incubator/it-tools/templates/common.yaml new file mode 100644 index 00000000000..b51394e00a4 --- /dev/null +++ b/charts/incubator/it-tools/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/it-tools/values.yaml b/charts/incubator/it-tools/values.yaml new file mode 100644 index 00000000000..5db4e2a5e3e --- /dev/null +++ b/charts/incubator/it-tools/values.yaml @@ -0,0 +1,23 @@ +image: + repository: tccr.io/truecharts/it-tools + pullPolicy: IfNotPresent + tag: v2023.8.16@sha256:054bd18916e3cce944bd9e4d7e9d2947b7492ecc401b1dec3cba989d8ca0a1ee + + +service: + main: + ports: + main: + protocol: http + targetPort: 80 + port: 18082 + +persistence: + cache: + enabled: true + type: emptyDir + mountPath: "/var/cache/nginx" + +portal: + open: + enabled: true