diff --git a/charts/incubator/flexo/.helmignore b/charts/incubator/flexo/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/incubator/flexo/.helmignore @@ -0,0 +1,32 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png +icon.webp +icon-small.webp diff --git a/charts/incubator/flexo/CHANGELOG.md b/charts/incubator/flexo/CHANGELOG.md new file mode 100644 index 00000000000..f3e8318aa10 --- /dev/null +++ b/charts/incubator/flexo/CHANGELOG.md @@ -0,0 +1,4 @@ +--- +title: Changelog +pagefind: false +--- diff --git a/charts/incubator/flexo/Chart.yaml b/charts/incubator/flexo/Chart.yaml new file mode 100644 index 00000000000..9fe26727edb --- /dev/null +++ b/charts/incubator/flexo/Chart.yaml @@ -0,0 +1,36 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: tools + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: incubator +apiVersion: v2 +appVersion: 1.6.9 +dependencies: + - name: common + version: 25.4.10 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] +deprecated: false +description: Arch linux pacman cache proxy server +home: https://truecharts.org/charts/incubator/flexo +icon: https://truecharts.org/img/hotlink-ok/chart-icons/flexo.webp +keywords: + - flexo + - linux +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: flexo +sources: + - https://github.com/nroi/flexo + - https://github.com/truecharts/charts/tree/master/charts/incubator/flexo + - https://hub.docker.com/r/nroi/flexo +type: application +version: 0.0.1 diff --git a/charts/incubator/flexo/README.md b/charts/incubator/flexo/README.md new file mode 100644 index 00000000000..7ef0b890d73 --- /dev/null +++ b/charts/incubator/flexo/README.md @@ -0,0 +1,3 @@ +--- +title: README +--- \ No newline at end of file diff --git a/charts/incubator/flexo/icon.png b/charts/incubator/flexo/icon.png new file mode 100644 index 00000000000..a2a5b5c5edf Binary files /dev/null and b/charts/incubator/flexo/icon.png differ diff --git a/charts/incubator/flexo/templates/NOTES.txt b/charts/incubator/flexo/templates/NOTES.txt new file mode 100644 index 00000000000..c8b2d714d13 --- /dev/null +++ b/charts/incubator/flexo/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} \ No newline at end of file diff --git a/charts/incubator/flexo/templates/common.yaml b/charts/incubator/flexo/templates/common.yaml new file mode 100644 index 00000000000..78d963fb168 --- /dev/null +++ b/charts/incubator/flexo/templates/common.yaml @@ -0,0 +1,2 @@ +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/flexo/values.yaml b/charts/incubator/flexo/values.yaml new file mode 100644 index 00000000000..2c0ef8f100d --- /dev/null +++ b/charts/incubator/flexo/values.yaml @@ -0,0 +1,32 @@ +image: + pullPolicy: IfNotPresent + repository: docker.io/nroi/flexo + tag: 1.6.9@sha256:850061e57c6d0acdee618be70ba4c58149137980852aaaf917bcde885e5ad65a + +service: + main: + ports: + main: + port: 7878 + protocol: http +persistence: + data: + enabled: true + type: "emptyDir" + size: 10Gi + mountPath: "/var/cache/flexo" +workload: + main: + podSpec: + containers: + main: + probes: + liveness: + path: "/metrics" + readiness: + path: "/metrics" + startup: + path: "/metrics" + env: + FLEXO_LISTEN_IP_ADDRESS: "0.0.0.0" + FLEXO_PORT: "{{ .Values.service.main.ports.main.port }}"