Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 105 additions & 0 deletions charts/codefresh/.ci/values/defaults.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
seed-e2e:
enabled: true

global:
appUrl: "" # placeholder
imagePullSecrets:
- codefresh-registry
- dockerhub-creds

cfapi:
rbac:
namespaced: false
hpa:
enabled: true
resources:
requests:
cpu: 300m
memory: 1024Mi
container:
env:
DEFAULT_SYSTEM_TYPE: CLASSIC

ingress:
enabled: true
ingressClassName: nginx
tls:
enabled: false

ingress-nginx:
enabled: false

argo-platform:
enabled: true

analytics-reporter:
hpa:
enabled: true

api-events:
hpa:
enabled: true

api-graphql:
hpa:
enabled: true
resources:
requests:
cpu: 300m
memory: 1024Mi

cron-executor:
hpa:
enabled: true

event-handler:
hpa:
enabled: true
resources:
requests:
cpu: 300m
memory: 1024Mi

ui:
hpa:
enabled: true

audit:
hpa:
enabled: true

abac:
hpa:
enabled: true

promotion-orchestrator:
hpa:
enabled: true

mongodb:
migration:
enabled: false
image:
repository: bitnamilegacy/mongodb
nodeSelector:
kubernetes.io/arch: amd64

consul:
image:
repository: bitnamilegacy/consul

nats:
image:
repository: bitnamilegacy/nats

rabbitmq:
image:
repository: bitnamilegacy/rabbitmq

hooks:
mongodb:
nodeSelector:
kubernetes.io/arch: amd64
rabbitmq:
nodeSelector:
kubernetes.io/arch: amd64
8 changes: 4 additions & 4 deletions charts/codefresh/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: Helm Chart for Codefresh On-Prem
name: codefresh
version: 2.6.14
version: 2.6.15
keywords:
- codefresh
home: https://codefresh.io/
Expand All @@ -17,9 +17,9 @@ annotations:
artifacthub.io/alternativeName: "codefresh-onprem"
artifacthub.io/containsSecurityUpdates: "false"
# supported kinds are added, changed, deprecated, removed, fixed and security.
# artifacthub.io/changes: |
# - kind: fixed
# description: "Fixed an issue with incorrect Github Enterprise branch list endpoint."
artifacthub.io/changes: |
- kind: fixed
description: "Fixed an issue with incorrect Github Enterprise branch list endpoint."
dependencies:
- name: cf-common
repository: oci://quay.io/codefresh/charts
Expand Down
4 changes: 3 additions & 1 deletion charts/codefresh/templates/secrets/regsecret.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{{ $name := printf "%v-%v-%v" .Release.Name .Values.global.codefresh "registry" }}
{{- if .Values.imageCredentials }}
---
apiVersion: v1
kind: Secret
Expand All @@ -20,4 +21,5 @@ metadata:
type: kubernetes.io/dockerconfigjson
data:
.dockerconfigjson: {{ include "codefresh.imagePullSecret" . }}
{{- end }}
{{- end }}
{{- end }}
Loading