diff --git a/charts/gitops-runtime/Chart.yaml b/charts/gitops-runtime/Chart.yaml index 1ed09059..89256846 100644 --- a/charts/gitops-runtime/Chart.yaml +++ b/charts/gitops-runtime/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.1.75 description: A Helm chart for Codefresh gitops runtime name: gitops-runtime -version: '0.24.3' +version: '0.24.4' home: https://github.com/codefresh-io/gitops-runtime-helm icon: https://avatars1.githubusercontent.com/u/11412079?v=3 keywords: diff --git a/charts/gitops-runtime/templates/_helpers.tpl b/charts/gitops-runtime/templates/_helpers.tpl index 9f4b88af..da01d6fe 100644 --- a/charts/gitops-runtime/templates/_helpers.tpl +++ b/charts/gitops-runtime/templates/_helpers.tpl @@ -48,6 +48,7 @@ app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} {{- end }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/part-of: codefresh-gitops-runtime +codefresh.io/runtime-name: {{ .Values.global.runtime.name | quote }} {{- end }} {{/* diff --git a/tests/component-tests/setup/values/gitea.values.yaml b/tests/component-tests/setup/values/gitea.values.yaml index fcb15ef1..51729b97 100644 --- a/tests/component-tests/setup/values/gitea.values.yaml +++ b/tests/component-tests/setup/values/gitea.values.yaml @@ -8,11 +8,15 @@ # These values are used by the Helm install command in the test suite to # ensure a minimal and reliable Gitea setup for testing purposes. # ----------------------------------------------------------------------------- -redis-cluster: - enabled: false postgresql-ha: enabled: false -postgresql: - enabled: true - image: - repository: bitnamilegacy/postgresql + +valkey-cluster: + enabled: false + +gitea: + config: + database: + DB_TYPE: sqlite3 + HOST: localhost + PORT: 3306