Skip to content

Commit 5abbd77

Browse files
Merge pull request #143 from codefresh-io/feat-gitops-operator-helm-chart
feat(gitops-operator): add gitops-operator as subchart
2 parents 4b8476f + 440d993 commit 5abbd77

20 files changed

+47
-1270
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## What
2+
3+
## Why
4+
5+
## Notes
6+
<!-- Add any notes here -->

charts/gitops-runtime/Chart.yaml

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 0.1.39
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
5-
version: 0.4.2
5+
version: 0.4.3
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
88
keywords:
@@ -15,19 +15,7 @@ annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/changes: |
1717
- kind: changed
18-
description: Update app version to 0.1.39
19-
- kind: changed
20-
description: Update argo-cd chart to 5.51.6-5-cap-2.9-2024.1.17-0d221227f
21-
- kind: changed
22-
description: Update sealed-secrets chart to 2.14.1
23-
- kind: changed
24-
description: Update sealed-secrets image to v0.24.5
25-
- kind: changed
26-
description: Update app-proxy to 1.2608.0
27-
- kind: fixed
28-
description: Fix runtime components log
29-
- kind: fixed
30-
description: fix critical security vulnerability
18+
description: Add codefresh-gitops-operator as separate chart
3119
dependencies:
3220
- name: argo-cd
3321
repository: https://codefresh-io.github.io/argo-helm
@@ -51,3 +39,8 @@ dependencies:
5139
version: 0.1.15
5240
alias: tunnel-client
5341
condition: tunnel-client.enabled
42+
- name: codefresh-gitops-operator
43+
repository: oci://quay.io/codefresh/charts
44+
version: 1.0.1
45+
alias: gitops-operator
46+
condition: gitops-operator.enabled

charts/gitops-runtime/README.md

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Codefresh gitops runtime
2-
![Version: 0.4.2](https://img.shields.io/badge/Version-0.4.2-informational?style=flat-square) ![AppVersion: 0.1.39](https://img.shields.io/badge/AppVersion-0.1.39-informational?style=flat-square)
2+
![Version: 0.4.3](https://img.shields.io/badge/Version-0.4.3-informational?style=flat-square) ![AppVersion: 0.1.39](https://img.shields.io/badge/AppVersion-0.1.39-informational?style=flat-square)
33

44
## Prerequisites
55

@@ -27,7 +27,7 @@ We have created a helper utility to resolve this issue:
2727
The utility is packaged in a container image. Below are instructions on executing the utility using Docker:
2828

2929
```
30-
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.4.2 <local_registry>
30+
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.4.3 <local_registry>
3131
```
3232
`output_dir` - is a local directory where the utility will output files. <br>
3333
`local_registry` - is your local registry where you want to mirror the images to
@@ -223,43 +223,32 @@ sealed-secrets:
223223
| gitops-operator.crds.annotations | object | `{}` | Annotations on gitops operator CRDs |
224224
| gitops-operator.crds.install | bool | `true` | Whether or not to install CRDs |
225225
| gitops-operator.crds.keep | bool | `false` | Keep CRDs if gitops runtime release is uninstalled |
226+
| gitops-operator.enabled | bool | `true` | |
226227
| gitops-operator.env | object | `{}` | |
227228
| gitops-operator.fullnameOverride | string | `""` | |
228229
| gitops-operator.image.pullPolicy | string | `"IfNotPresent"` | |
229-
| gitops-operator.image.repository | string | `"quay.io/codefresh/codefresh-gitops-operator"` | |
230-
| gitops-operator.image.tag | string | `"v0.1.0-alpha.5"` | |
230+
| gitops-operator.image.registry | string | `"quay.io"` | |
231+
| gitops-operator.image.repository | string | `"codefresh/codefresh-gitops-operator"` | |
231232
| gitops-operator.imagePullSecrets | list | `[]` | |
232233
| gitops-operator.kube-rbac-proxy.image.pullPolicy | string | `"IfNotPresent"` | |
233-
| gitops-operator.kube-rbac-proxy.image.repository | string | `"gcr.io/kubebuilder/kube-rbac-proxy"` | |
234+
| gitops-operator.kube-rbac-proxy.image.registry | string | `"gcr.io"` | |
235+
| gitops-operator.kube-rbac-proxy.image.repository | string | `"kubebuilder/kube-rbac-proxy"` | |
234236
| gitops-operator.kube-rbac-proxy.image.tag | string | `"v0.14.1"` | |
235237
| gitops-operator.kube-rbac-proxy.resources.limits.cpu | string | `"500m"` | |
236238
| gitops-operator.kube-rbac-proxy.resources.limits.memory | string | `"128Mi"` | |
237239
| gitops-operator.kube-rbac-proxy.resources.requests.cpu | string | `"100m"` | |
238240
| gitops-operator.kube-rbac-proxy.resources.requests.memory | string | `"64Mi"` | |
239241
| gitops-operator.kube-rbac-proxy.securityContext.allowPrivilegeEscalation | bool | `false` | |
240242
| gitops-operator.kube-rbac-proxy.securityContext.capabilities.drop[0] | string | `"ALL"` | |
241-
| gitops-operator.livenessProbe.failureThreshold | int | `10` | |
242-
| gitops-operator.livenessProbe.initialDelaySeconds | int | `10` | |
243-
| gitops-operator.livenessProbe.periodSeconds | int | `10` | |
244-
| gitops-operator.livenessProbe.successThreshold | int | `1` | |
245-
| gitops-operator.livenessProbe.timeoutSeconds | int | `10` | |
246243
| gitops-operator.nameOverride | string | `""` | |
247244
| gitops-operator.nodeSelector | object | `{}` | |
248245
| gitops-operator.podAnnotations | object | `{}` | |
249246
| gitops-operator.podLabels | object | `{}` | |
250-
| gitops-operator.podSecurityContext.runAsNonRoot | bool | `true` | |
251-
| gitops-operator.readinessProbe.failureThreshold | int | `3` | |
252-
| gitops-operator.readinessProbe.initialDelaySeconds | int | `10` | |
253-
| gitops-operator.readinessProbe.periodSeconds | int | `10` | |
254-
| gitops-operator.readinessProbe.successThreshold | int | `1` | |
255-
| gitops-operator.readinessProbe.timeoutSeconds | int | `10` | |
256247
| gitops-operator.replicaCount | int | `1` | |
257248
| gitops-operator.resources.limits.cpu | string | `"500m"` | |
258249
| gitops-operator.resources.limits.memory | string | `"128Mi"` | |
259250
| gitops-operator.resources.requests.cpu | string | `"100m"` | |
260251
| gitops-operator.resources.requests.memory | string | `"64Mi"` | |
261-
| gitops-operator.securityContext.allowPrivilegeEscalation | bool | `false` | |
262-
| gitops-operator.securityContext.capabilities.drop[0] | string | `"ALL"` | |
263252
| gitops-operator.serviceAccount.annotations | object | `{}` | |
264253
| gitops-operator.serviceAccount.create | bool | `true` | |
265254
| gitops-operator.serviceAccount.name | string | `"gitops-operator-controller-manager"` | |

charts/gitops-runtime/templates/_components/gitops-operator/_all_resources.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

charts/gitops-runtime/templates/_components/gitops-operator/_deployment.yaml

Lines changed: 0 additions & 106 deletions
This file was deleted.

charts/gitops-runtime/templates/_components/gitops-operator/_helpers.tpl

Lines changed: 0 additions & 47 deletions
This file was deleted.

charts/gitops-runtime/templates/_components/gitops-operator/_rbac.yaml

Lines changed: 0 additions & 63 deletions
This file was deleted.

charts/gitops-runtime/templates/_components/gitops-operator/_serviceaccount.yaml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)