Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2024-02-27 23:28:07 +00:00
parent 5042337358
commit a04bbe3902
15 changed files with 28 additions and 12 deletions

View File

@ -1,5 +0,0 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}

View File

@ -4,13 +4,13 @@ annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/category: operators
truecharts.org/max_helm_version: "3.14"
truecharts.org/min_helm_version: "3.12"
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: enterprise
apiVersion: v2
appVersion: 0.0.3
dependencies:
- name: common
version: 18.0.2
version: 18.0.3
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
@ -42,4 +42,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/enterprise/kubeapps
- https://ghcr.io/xstar97/my-proxy-service
type: application
version: 2.1.3
version: 2.1.7

Binary file not shown.

View File

@ -47,19 +47,17 @@ service:
## TODO: Enable
main:
enabled: false
primary: true
primary: false
expandObjectName: false
ports:
main:
## TODO: Enable
enabled: false
primary: true
primary: false
port: 3000
targetPort: 3000
tckubeapps:
enabled: true
expandObjectName: false
## TODO: Move to main service
primary: true
labels:
truecharts.org/flagged: "true"

View File

@ -0,0 +1,19 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . }}
{{- $overrideService := dict "name" "tckubeapps" "port" 8080 -}}
{{- $hosts := list -}}
{{- range $.Values.ingress.main.hosts -}}
{{- $paths := list -}}
{{- range .paths -}}
{{- $path := dict "path" .path "pathType" .pathType "overrideService" $overrideService -}}
{{- $paths = append $paths $path -}}
{{- end -}}
{{- $host := dict "host" .host "paths" $paths -}}
{{- $hosts = append $hosts $host -}}
{{- end -}}
{{- $_ := set $.Values.ingress.main "hosts" $hosts -}}
{{/* Render the templates */}}
{{ include "tc.v1.common.loader.apply" . }}