Skip to content

Commit 48ac23e

Browse files
authored
Merge pull request #217 from codefresh-io/bump-gitops-operator
Updated gitops-operator chart to 1.0.19
2 parents 4ce9c14 + 2710d2c commit 48ac23e

File tree

3 files changed

+7
-17
lines changed

3 files changed

+7
-17
lines changed

charts/gitops-runtime/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/changes: |
1717
- kind: changed
18-
description: "update codefresh-gitops-operator chart to 1.0.17 to allow missing promotion flow label"
18+
description: "update codefresh-gitops-operator chart to 1.0.19"
1919
- kind: changed
20-
description: "updated cap-app-proxy to 1.2867.0, including skipping PAT scopes permissions validations for git providers: BitBucket, BitBucket Server and GitLab; new query promotablePropertiesPreview"
20+
description: "updated cap-app-proxy to 1.2875.0, including skipping PAT scopes permissions validations for git providers: BitBucket, BitBucket Server and GitLab; new query promotablePropertiesPreview"
2121
- kind: added
2222
description: garage as optional dependency for Argo workflows artifact and log storage
2323
- kind: fixed
@@ -49,7 +49,7 @@ dependencies:
4949
condition: tunnel-client.enabled
5050
- name: codefresh-gitops-operator
5151
repository: oci://quay.io/codefresh/charts
52-
version: 1.0.17
52+
version: 1.0.19
5353
alias: gitops-operator
5454
condition: gitops-operator.enabled
5555
- name: garage

charts/gitops-runtime/README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,14 @@ sealed-secrets:
100100
| app-proxy.image-enrichment.serviceAccount.name | string | `"codefresh-image-enrichment-sa"` | Name of the service account to create or the name of the existing one to use |
101101
| app-proxy.image.pullPolicy | string | `"IfNotPresent"` | |
102102
| app-proxy.image.repository | string | `"quay.io/codefresh/cap-app-proxy"` | |
103-
| app-proxy.image.tag | string | `"1.2852.2"` | |
103+
| app-proxy.image.tag | string | `"1.2875.0"` | |
104104
| app-proxy.imagePullSecrets | list | `[]` | |
105105
| app-proxy.initContainer.command[0] | string | `"./init.sh"` | |
106106
| app-proxy.initContainer.env | object | `{}` | |
107107
| app-proxy.initContainer.extraVolumeMounts | list | `[]` | Extra volume mounts for init container |
108108
| app-proxy.initContainer.image.pullPolicy | string | `"IfNotPresent"` | |
109109
| app-proxy.initContainer.image.repository | string | `"quay.io/codefresh/cap-app-proxy-init"` | |
110-
| app-proxy.initContainer.image.tag | string | `"1.2852.2"` | |
110+
| app-proxy.initContainer.image.tag | string | `"1.2875.0"` | |
111111
| app-proxy.initContainer.resources.limits.cpu | string | `"1"` | |
112112
| app-proxy.initContainer.resources.limits.memory | string | `"512Mi"` | |
113113
| app-proxy.initContainer.resources.requests.cpu | string | `"0.2"` | |
@@ -156,16 +156,6 @@ sealed-secrets:
156156
| argo-cd.eventReporter.replicas | int | `3` | Amount of shards to handle applications events |
157157
| argo-cd.eventReporter.version | string | `"v2"` | Switches between old and new reporter version. Possible values: v1, v2. For v2 `argo-cd.eventReporter.enabled=true` is required |
158158
| argo-cd.fullnameOverride | string | `"argo-cd"` | |
159-
| argo-cd.notifications.bots.slack | object | `{}` | |
160-
| argo-cd.notifications.enabled | bool | `true` | |
161-
| argo-cd.notifications.notifiers."service.webhook.cf-promotion-app-revision-changed-notifier" | string | `"url: http://gitops-operator:8082/app-revision-changed\nheaders:\n- name: Content-Type\n value: application/json\n"` | |
162-
| argo-cd.notifications.subscriptions[0].recipients[0] | string | `"cf-promotion-app-revision-changed-notifier"` | |
163-
| argo-cd.notifications.subscriptions[0].triggers[0] | string | `"cf-promotion-on-deployed-trigger"` | |
164-
| argo-cd.notifications.subscriptions[1].recipients[0] | string | `"cf-promotion-app-revision-changed-notifier"` | |
165-
| argo-cd.notifications.subscriptions[1].triggers[0] | string | `"cf-promotion-on-out-of-sync-trigger"` | |
166-
| argo-cd.notifications.templates."template.cf-promotion-app-revision-changed-template" | string | `"webhook:\n cf-promotion-app-revision-changed-notifier:\n method: POST\n body: |\n {\n \"APP_NAMESPACE\": {{ .app.metadata.namespace | quote }},\n \"APP_NAME\": {{ .app.metadata.name | quote }},\n \"REPO_URL\": {{ call .repo.RepoURLToHTTPS .app.spec.source.repoURL | quote }},\n \"BRANCH\": {{ .app.spec.source.targetRevision | quote }},\n \"PATH\": {{ .app.spec.source.path | quote }},\n \"PREV_COMMIT_SHA\": {{ (index .app.status.history (sub (len .app.status.history) 2)).revision | quote }},\n \"CURRENT_COMMIT_SHA\": {{ .app.status.operationState.syncResult.revision | quote }}\n }\n"` | |
167-
| argo-cd.notifications.triggers."trigger.cf-promotion-on-deployed-trigger" | string | `"- description: Application is synced and healthy. Triggered once per commit.\n when: get(app.spec.syncPolicy, \"automated\") != nil && app.status.sync.status == \"Synced\" && app.status.health.status == \"Healthy\" && app.status.operationState.syncResult.revision != nil\n oncePer: app.status.operationState.syncResult.revision\n send:\n - cf-promotion-app-revision-changed-template\n"` | |
168-
| argo-cd.notifications.triggers."trigger.cf-promotion-on-out-of-sync-trigger" | string | `"- description: Application is out of sync (when autoHeal is off). Triggered once per commit.\n when: get(app.spec.syncPolicy, \"automated\") == nil && app.status.sync.status == \"OutOfSync\" && app.status.operationState.syncResult.revision != nil\n oncePer: app.status.operationState.syncResult.revision\n send:\n - cf-promotion-app-revision-changed-template\n"` | |
169159
| argo-events.crds.install | bool | `false` | |
170160
| argo-events.fullnameOverride | string | `"argo-events"` | |
171161
| argo-rollouts.controller.replicas | int | `1` | |

charts/gitops-runtime/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,15 +445,15 @@ app-proxy:
445445
tag: 1.1.10-main
446446
image:
447447
repository: quay.io/codefresh/cap-app-proxy
448-
tag: 1.2867.0
448+
tag: 1.2875.0
449449
pullPolicy: IfNotPresent
450450
# -- Extra volume mounts for main container
451451
extraVolumeMounts: []
452452

453453
initContainer:
454454
image:
455455
repository: quay.io/codefresh/cap-app-proxy-init
456-
tag: 1.2867.0
456+
tag: 1.2875.0
457457
pullPolicy: IfNotPresent
458458
command:
459459
- ./init.sh

0 commit comments

Comments
 (0)