Skip to content

Commit 51abe24

Browse files
feat: gitops-onprem (#77)
1 parent e1c2dbf commit 51abe24

File tree

93 files changed

+2620
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+2620
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
## Reference: https://github.com/norwoodj/helm-docs
3+
set -eux
4+
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
5+
echo "$REPO_ROOT"
6+
7+
echo "Running Helm-Docs"
8+
docker run \
9+
-v "$REPO_ROOT:/helm-docs" \
10+
-u $(id -u) \
11+
--rm \
12+
--entrypoint /bin/sh \
13+
jnorwood/helm-docs:v1.11.0 \
14+
-c \
15+
helm-docs \
16+
--chart-search-root=codefresh-gitops \
17+
--template-files=./_templates.gotmpl \
18+
--template-files=README.md.gotmpl \
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
global:
2+
appUrl: "" # placeholder
3+
imagePullSecrets:
4+
- dockerhub-creds
5+
6+
ingress:
7+
enabled: true
8+
ingressClassName: nginx
9+
tls:
10+
enabled: false
11+
12+
cfapi:
13+
rbac:
14+
namespaced: false
15+
container:
16+
env:
17+
DEFAULT_SYSTEM_TYPE: GITOPS
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
e2e:
2+
enabled: true

charts/codefresh-gitops/.helmignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/

charts/codefresh-gitops/Chart.lock

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
dependencies:
2+
- name: cf-common
3+
repository: oci://quay.io/codefresh/charts
4+
version: 0.27.0
5+
- name: internal-gateway
6+
repository: oci://quay.io/codefresh/charts
7+
version: 0.10.4
8+
- name: mongodb
9+
repository: https://charts.bitnami.com/bitnami
10+
version: 15.6.26
11+
- name: postgresql
12+
repository: https://charts.bitnami.com/bitnami
13+
version: 16.7.4
14+
- name: redis
15+
repository: https://charts.bitnami.com/bitnami
16+
version: 20.13.4
17+
- name: rabbitmq
18+
repository: https://charts.bitnami.com/bitnami
19+
version: 15.5.3
20+
- name: cfapi
21+
repository: oci://quay.io/codefresh/charts
22+
version: 21.282.3
23+
- name: runtime-environment-manager
24+
repository: oci://quay.io/codefresh/charts
25+
version: 3.42.2
26+
- name: cfui
27+
repository: oci://quay.io/codefresh/charts
28+
version: 14.99.7
29+
- name: cf-platform-analytics
30+
repository: oci://quay.io/codefresh/charts
31+
version: 0.50.2
32+
- name: cf-platform-analytics
33+
repository: oci://quay.io/codefresh/charts
34+
version: 0.50.2
35+
- name: argo-platform
36+
repository: oci://quay.io/codefresh/charts
37+
version: 1.3572.0
38+
- name: argo-hub-platform
39+
repository: oci://quay.io/codefresh/charts
40+
version: 0.1.24
41+
digest: sha256:b56f7da08872d82f1537ef08977d02d58bb1576ce5fbd0ca0d2e196e45c80115
42+
generated: "2025-06-13T19:04:26.344602+03:00"

charts/codefresh-gitops/Chart.yaml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
apiVersion: v2
2+
description: Helm Chart for Codefresh GitOps On-Prem
3+
name: codefresh-gitops
4+
version: 0.1.0
5+
keywords:
6+
- codefresh
7+
home: https://codefresh.io/
8+
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
9+
sources:
10+
- https://github.com/codefresh-io/codefresh-onprem-helm
11+
maintainers:
12+
- name: codefresh
13+
url: https://codefresh-io.github.io/
14+
appVersion: 0.1.0
15+
annotations:
16+
artifacthub.io/prerelease: "true"
17+
artifacthub.io/alternativeName: "codefresh-gitops-onprem"
18+
# supported kinds are added, changed, deprecated, removed, fixed and security.
19+
artifacthub.io/changes: |
20+
- kind: changed
21+
description: "Initial 0.1.0 release for Codefresh GitOps On-Prem"
22+
dependencies:
23+
- name: cf-common
24+
repository: oci://quay.io/codefresh/charts
25+
version: 0.27.0
26+
- name: internal-gateway
27+
repository: oci://quay.io/codefresh/charts
28+
version: 0.10.4
29+
condition: internal-gateway.enabled
30+
- name: mongodb
31+
version: 15.6.26
32+
repository: https://charts.bitnami.com/bitnami
33+
condition: mongodb.enabled,mongo.enabled,global.mongoDeploy
34+
- name: postgresql
35+
version: 16.7.4
36+
repository: https://charts.bitnami.com/bitnami
37+
condition: postgresql.enabled
38+
- name: redis
39+
version: 20.13.4
40+
repository: https://charts.bitnami.com/bitnami
41+
condition: redis.enabled
42+
- name: rabbitmq
43+
version: 15.5.3
44+
repository: https://charts.bitnami.com/bitnami
45+
condition: rabbitmq.enabled
46+
- name: cfapi
47+
alias: cfapi
48+
version: "*"
49+
repository: oci://quay.io/codefresh/charts
50+
condition: cfapi.enabled
51+
# temporary, need to remove
52+
- name: runtime-environment-manager
53+
version: "*"
54+
repository: oci://quay.io/codefresh/charts
55+
condition: runtime-environment-manager.enabled
56+
- name: cfui
57+
version: "*"
58+
repository: oci://quay.io/codefresh/charts
59+
condition: cfui.enabled
60+
- name: cf-platform-analytics
61+
alias: cf-platform-analytics-platform
62+
version: "*"
63+
repository: oci://quay.io/codefresh/charts
64+
condition: argo-platform.enabled
65+
- name: cf-platform-analytics
66+
alias: cf-platform-analytics-etlstarter
67+
version: "*"
68+
repository: oci://quay.io/codefresh/charts
69+
condition: argo-platform.enabled
70+
- name: argo-platform
71+
version: "*"
72+
repository: oci://quay.io/codefresh/charts
73+
condition: argo-platform.enabled
74+
- name: argo-hub-platform
75+
version: "*"
76+
repository: oci://quay.io/codefresh/charts
77+
condition: argo-platform.enabled

0 commit comments

Comments
 (0)