Skip to content

Commit a605f2e

Browse files
danielm-codefreshPhilippPlotnikovATGardnerpasha-codefresholeksandr-codefresh
authored
Release 0.1.19 (#159)
* [BE]:Up version (#126) * Up version * Up version * Up proxy version * Wip * Back version * Wip * add applications to app-proxy rbac (#124) * add applications to app-proxy rbac * bump * remove version bump * CR-15471-insecure-git-providers (#130) * add initContainer to app-proxy * move hosted to 2.4 (#129) Co-authored-by: Daniel Maizel <daniel.maizel@codefresh.io> * bumped app-proxy to 1.1982.0 (#132) * fix appset (#133) * fix appset * fix hosted installation * fix hybrid install * argocd 2.4 install * Debug * Revert "Debug" This reverts commit c02c9af. Co-authored-by: danielm-codefresh <daniel.maizel@codefresh.io> * bump app-proxy to 1.1991.1 (#138) * bump app-proxy to 1.1991.1 * CR-14423 (#136) app proxy update * Revert hosted move to argocd 2.4 (#139) * Revert "move hosted to 2.4 (#129)" This reverts commit 22f5ef5. * Revert "fix appset (#133)" This reverts commit aeeeb3a. * fix * update app-proxy (#141) * update app-proxy * hybrid test * Revert "hybrid test" This reverts commit e656ba8. * fix appProtocol for argocd-server to support Istio (#140) * Cr 24 hosted (#142) * Release 0.1.16 (#134) releasing 0.1.16 * Revert "Revert hosted move to argocd 2.4 (#139)" This reverts commit b63acd3 * hosted 2.4 * hosted 2.4 * runtime.yaml * fix hybrid * fix hybrid * revert VERSION Co-authored-by: Daniel Maizel <daniel.maizel@codefresh.io> * upgrade argo-workflows to 3.4 (#144) * =upgrade argo-workflows * fix changed ns * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * prepare for merge * wip * prepare for merge * update tag to 3.4.4 * Cr 15967 bb enr rc (#147) * mount argocd-token to app-proxy env * bumped app-proxy to 1.2016.2 Co-authored-by: Noam Gal <noam.gal@codefresh.io> Co-authored-by: andrii-codefresh <andrii@codefresh.io> * CR-15900-argo-cd-version-update (#149) argo-cd version update with rollback query * Revert "upgrade argo-workflows to 3.4 (#144)" This reverts commit ce2330b. * upgrade argo-rollouts to 1.4.0 (#152) * bump app-proxy (#155) * Argo workflow 3.4 upgrade (#157) * Revert "Revert "upgrade argo-workflows to 3.4 (#144)"" * add namespace override for argo-workflows Co-authored-by: danielm-codefresh <daniel.maizel@codefresh.io> * automatically merge release branch to main to avoid version drift (#158) * automatically merge release branch to main * add component version to release notes * testing release 0.1.19 * remove pre-release postfix Co-authored-by: Philipp Plotnikov <philipp.plotnikov@codefresh.io> Co-authored-by: Noam Gal <noam.gal@codefresh.io> Co-authored-by: pasha-codefresh <pavel@codefresh.io> Co-authored-by: Oleksandr Saulyak <oleksandr.saulyak@codefresh.io> Co-authored-by: Andrii Shaforostov <andrii@codefresh.io> Co-authored-by: Denis Melnik <denis@codefresh.io>
1 parent 988aca6 commit a605f2e

File tree

6 files changed

+44
-40
lines changed

6 files changed

+44
-40
lines changed

.github/workflows/release.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
token: ${{ secrets.RELEASE_TOKEN }}
2525
tag: ${{ env.NEW_TAG }}
2626
name: "runtime-v${{ env.NEW_TAG }}"
27+
bodyFile: "docs/releases/release_notes.md"
2728

2829
advance-latest-tag:
2930
runs-on: ubuntu-latest
@@ -72,3 +73,15 @@ jobs:
7273
ref: "refs/tags/stable",
7374
sha: context.sha
7475
})
76+
77+
sync-main-branch:
78+
runs-on: ubuntu-latest
79+
steps:
80+
- uses: actions/checkout@master
81+
82+
- name: Merge release branch -> main
83+
uses: devmasx/merge-branch@master
84+
with:
85+
type: now
86+
target_branch: main
87+
github_token: ${{ secrets.GITHUB_TOKEN }}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.18
1+
0.1.19
Lines changed: 21 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
apiVersion: kustomize.config.k8s.io/v1alpha1
22
kind: Component
3+
namespace: default
34
resources:
4-
- https://github.com/codefresh-io/argo-workflows/releases/download/v3.2.6-cap-CR-8697/install.yaml
5-
patches:
6-
# reset the crbs to `subject.namespace: default`, so that argo-cd will later change them to the actual ns
7-
- target:
8-
group: rbac.authorization.k8s.io
9-
version: v1
10-
kind: ClusterRoleBinding
11-
patch: |-
12-
- op: replace
13-
path: /subjects/0/namespace
14-
value: default
5+
- https://github.com/codefresh-io/argo-workflows/releases/download/v3.4-cap-CR-15902/install.yaml
156

7+
patches:
168
- target:
179
group: apps
1810
version: v1
@@ -22,29 +14,22 @@ patches:
2214
- op: add
2315
path: /spec/template/spec/containers/0/args/-
2416
value: --auth-mode=server
25-
26-
patchesStrategicMerge:
27-
- |
28-
apiVersion: v1
29-
kind: ConfigMap
30-
metadata:
17+
- target:
18+
version: v1
19+
kind: ConfigMap
3120
name: workflow-controller-configmap
32-
data:
33-
# Fields reference can be found here: https://argoproj.github.io/argo-workflows/workflow-controller-configmap.yaml
34-
workflowDefaults: |
35-
spec:
36-
ttlStrategy:
37-
secondsAfterCompletion: 86400
38-
secondsAfterSuccess: 86400
39-
secondsAfterFailure: 86400
40-
podGC:
41-
strategy: OnWorkflowCompletion
42-
labelSelector:
43-
matchLabels:
44-
should-be-deleted: "true"
45-
46-
configMapGenerator:
47-
- name: workflow-controller-configmap
48-
behavior: merge
49-
literals:
50-
- containerRuntimeExecutor=emissary
21+
patch: |-
22+
- op: add
23+
path: /data
24+
value:
25+
workflowDefaults: |
26+
spec:
27+
ttlStrategy:
28+
secondsAfterCompletion: 86400
29+
secondsAfterSuccess: 86400
30+
secondsAfterFailure: 86400
31+
podGC:
32+
strategy: OnWorkflowCompletion
33+
labelSelector:
34+
matchLabels:
35+
should-be-deleted: "true"

csdp/base_components/bootstrap/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ configMapGenerator:
99
- name: codefresh-cm
1010
behavior: create
1111
literals: # order matters - DO NOT change
12-
- version=0.1.18 # Runtime version
13-
- bootstrapRevision=0.1.18 # Tag to use for bootstrap (change this to the name of your branch if you want to test changes)
12+
- version=0.1.19 # Runtime version
13+
- bootstrapRevision=0.1.19 # Tag to use for bootstrap (change this to the name of your branch if you want to test changes)
1414
- appsetRequeueTime=15
1515
replacements:
1616
# template the version from the configmap into the applicationset generators

csdp/hybrid/basic/runtime.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
namespace: "{{ namespace }}"
66
spec:
77
requiredCLIVersion: ^0.1.0
8-
version: 0.1.18
8+
version: 0.1.19
99
bootstrapSpecifier: github.com/codefresh-io/csdp-official/csdp/hybrid/basic/apps/argo-cd
1010
components:
1111
- name: events

docs/releases/release_notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Installed Components:
2+
Argo CD v2.4.0
3+
Argo Events v1.7.2
4+
Argo Rollouts v1.4.0
5+
Argo Workflows v3.4.4
6+
Sealed Secrets 0.17.5

0 commit comments

Comments
 (0)