Skip to content

Commit

Permalink
Feature: 1. set gitlab image version to 13.11.7-ce.0 2. support set…
Browse files Browse the repository at this point in the history
…ting `additionalLabels` for core & web module 3. set `gitOpsRepoDefaultBranch` to master
yeka committed Feb 1, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent f5d1aa1 commit f95d58b
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/horizon/Chart.yaml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ description: A CICD DevOps Platform

type: application

version: 2.0.1
version: 2.0.2
appVersion: v2.0.1

dependencies:
3 changes: 3 additions & 0 deletions charts/horizon/templates/core/core-dpl.yaml
Original file line number Diff line number Diff line change
@@ -20,6 +20,9 @@ spec:
labels:
{{ include "horizon.matchLabels" . | indent 8 }}
component: core
{{- if .Values.core.additionalLabels }}
{{ toYaml .Values.core.additionalLabels | indent 8 }}
{{- end }}
annotations:
checksum/config: {{ include (print $.Template.BasePath "/config-cm.yaml") . | sha256sum }}
{{- if .Values.core.podAnnotations }}
3 changes: 3 additions & 0 deletions charts/horizon/templates/job/job-dpl.yaml
Original file line number Diff line number Diff line change
@@ -18,6 +18,9 @@ spec:
labels:
{{ include "horizon.matchLabels" . | indent 8 }}
component: job
{{- if .Values.job.additionalLabels }}
{{ toYaml .Values.job.additionalLabels | indent 8 }}
{{- end }}
annotations:
checksum/config: {{ include (print $.Template.BasePath "/config-cm.yaml") . | sha256sum }}
spec:
10 changes: 6 additions & 4 deletions charts/horizon/values.yaml
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ config:
kubeconfig: ""
s3:
accessKey: admin
secretKey: admin
secretKey: qOIh3Xt5jg
region: china
endpoint: "{{ .Release.Name }}-minio:9000"
bucket: horizon
@@ -94,12 +94,13 @@ ingress:

core:
replicas: 1
additionalLabels: {}
image:
repository: horizoncd/horizon-core
tag: v2.0.1
args:
loglevel:
gitOpsRepoDefaultBranch: main
gitOpsRepoDefaultBranch: master
securityContext:
runAsUser: 10001
fsGroup: 10001
@@ -2058,12 +2059,13 @@ core:
job:
additionalLabels: {}
image:
repository: horizoncd/horizon-job
tag: v2.0.1
args:
loglevel:
gitOpsRepoDefaultBranch: main
gitOpsRepoDefaultBranch: master
securityContext:
runAsUser: 10001
fsGroup: 10001
@@ -3090,7 +3092,7 @@ mysql:
gitlab:
enabled: true
image: gitlab/gitlab-ce
imageTag: "15.5.1-ce.0"
imageTag: "13.11.7-ce.0"
ingress:
enabled: true
hosts:
2 changes: 1 addition & 1 deletion charts/tektoncd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -7,4 +7,4 @@ version: 2.0.1

appVersion: 0.18.1

description: Helm chart for Tekton pipelines, Tekton triggers and Tekton dashboard.
description: Helm chart for Tekton pipelines,Tekton triggers and Tekton dashboard.

0 comments on commit f95d58b

Please sign in to comment.