diff --git a/charts/incubator/.gitkeep b/charts/incubator/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/charts/stable/mend-renovate/.helmignore b/charts/stable/mend-renovate/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/stable/mend-renovate/.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/stable/mend-renovate/CHANGELOG.md b/charts/stable/mend-renovate/CHANGELOG.md new file mode 100644 index 00000000000..f3e8318aa10 --- /dev/null +++ b/charts/stable/mend-renovate/CHANGELOG.md @@ -0,0 +1,4 @@ +--- +title: Changelog +pagefind: false +--- diff --git a/charts/stable/mend-renovate/Chart.yaml b/charts/stable/mend-renovate/Chart.yaml new file mode 100644 index 00000000000..ce1dd8e7e49 --- /dev/null +++ b/charts/stable/mend-renovate/Chart.yaml @@ -0,0 +1,36 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: media + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: stable +apiVersion: v2 +appVersion: 9.4.0 +dependencies: + - name: common + version: 25.4.10 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] +deprecated: false +description: Selfhosted Mend Renovate App with included webhook and Github APP +home: https://truecharts.org/charts/stable/mend-renovate +icon: https://truecharts.org/img/hotlink-ok/chart-icons/mend-renovate.webp +keywords: + - renovate + - mend-renovate +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: mend-renovate +sources: + - https://ghcr.io/mend/renovate-ce + - https://github.com/mend/renovate-ce-ee + - https://github.com/truecharts/charts/tree/master/charts/stable/mend-renovate +type: application +version: 1.0.0 diff --git a/charts/stable/mend-renovate/README.md b/charts/stable/mend-renovate/README.md new file mode 100644 index 00000000000..2b8cc49d247 --- /dev/null +++ b/charts/stable/mend-renovate/README.md @@ -0,0 +1,3 @@ +--- +title: README +--- diff --git a/charts/stable/mend-renovate/icon.png b/charts/stable/mend-renovate/icon.png new file mode 100644 index 00000000000..1237c13c7b5 Binary files /dev/null and b/charts/stable/mend-renovate/icon.png differ diff --git a/charts/stable/mend-renovate/templates/NOTES.txt b/charts/stable/mend-renovate/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/stable/mend-renovate/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/stable/mend-renovate/templates/common.yaml b/charts/stable/mend-renovate/templates/common.yaml new file mode 100644 index 00000000000..992373e7501 --- /dev/null +++ b/charts/stable/mend-renovate/templates/common.yaml @@ -0,0 +1,2 @@ + +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/stable/mend-renovate/values.yaml b/charts/stable/mend-renovate/values.yaml new file mode 100644 index 00000000000..560d5300e46 --- /dev/null +++ b/charts/stable/mend-renovate/values.yaml @@ -0,0 +1,25 @@ +image: + repository: ghcr.io/mend/renovate-ce + pullPolicy: IfNotPresent + tag: 9.4.0@sha256:89dbbcac0071069a1870c3078cfe3cf3974b435be17c76b44dfee8bcbdf522b3 +workload: + main: + podSpec: + containers: + main: + env: + # Accept TOS required + MEND_RNV_ACCEPT_TOS: n + # unregistered public license key + MEND_RNV_LICENSE_KEY: eyJsaW1pdCI6IjEwIn0=.30440220457941b71ea8eb345c729031718b692169f0ce2cf020095fd328812f4d7d5bc1022022648d1a29e71d486f89f27bdc8754dfd6df0ddda64a23155000a61a105da2a1 + MEND_RNV_PLATFORM: github + # See https://github.com/mend/renovate-ce-ee/blob/main/docs/setup-for-github.md + MEND_RNV_GITHUB_APP_ID: ${RENOVATE_APP_ID} + MEND_RNV_GITHUB_APP_KEY: ${RENOVATE_APP_KEY} + MEND_RNV_WEBHOOK_SECRET: ${RENOVATE_WEBHOOK_SECRET} + MEND_RNV_SERVER_PORT: "{{ .Values.service.main.ports.main.port }}" +service: + main: + ports: + main: + port: 80