forked from Alfresco/alfresco-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
127 lines (109 loc) · 4.43 KB
/
updatecli.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
name: Bump versions
run-name: Bump ${{ inputs.update-type }} using alfresco-updatecli/${{ inputs.alfresco-updatecli-ref }}
on:
workflow_dispatch:
inputs:
update-type:
description: 'Which dependencies to bump'
type: choice
options:
- charts
- values
alfresco-updatecli-ref:
description: "The version to use for alfresco/alfresco-updatecli configs (used only when `values` is selected)"
type: string
default: master
env:
UPDATE_CLI_VERSION: v0.71.0
jobs:
bump-charts-dependencies:
runs-on: ubuntu-latest
name: Helm charts dependencies
if: inputs.update-type == 'charts'
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.BOT_GITHUB_TOKEN }}
- uses: >-
Alfresco/alfresco-build-tools/.github/actions/[email protected]
- name: Login to quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Install Updatecli
uses: updatecli/updatecli-action@v2
with:
version: ${{ env.UPDATE_CLI_VERSION }}
- run: updatecli apply
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected]
- name: Regenerate helm docs if necessary
uses: Alfresco/alfresco-build-tools/.github/actions/[email protected]
with:
pre-commit-args: helm-docs || true
skip_checkout: "true"
- name: Git Auto Commit
uses: stefanzweifel/[email protected]
with:
commit_message: |
🛠 Updatecli pipeline bump
commit_user_name: ${{ vars.BOT_GITHUB_USERNAME }}
commit_user_email: ${{ vars.BOT_GITHUB_EMAIL }}
branch: ${{ github.ref_name == 'main' && 'updatecli-bump-helm' || github.ref_name }}
create_branch: ${{ github.ref_name == 'main' }}
push_options: ${{ github.ref_name == 'main' && '--force' || '' }}
bump-values-dependencies:
runs-on: ubuntu-latest
name: Image tags values dependencies
if: inputs.update-type == 'values'
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.BOT_GITHUB_TOKEN }}
- uses: >-
Alfresco/alfresco-build-tools/.github/actions/[email protected]
- name: Login to quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Install Updatecli
uses: updatecli/updatecli-action@v2
with:
version: ${{ env.UPDATE_CLI_VERSION }}
- name: Checkout updatecli configs
uses: actions/checkout@v4
with:
repository: alfresco/alfresco-updatecli
ref: ${{ inputs.alfresco-updatecli-ref || 'master' }}
path: alfresco-updatecli
- name: Preprocess values file appending existing keys only
run: yq '. *? load("alfresco-updatecli/deployments/values/supported-matrix.yaml") | explode(.)' updatecli-matrix-targets.yaml | tee ./merged.yaml
- name: updatecli apply
# path to values file must be relative https://github.com/updatecli/updatecli/issues/1253
run: updatecli apply -c alfresco-updatecli/deployments/uber-manifest.tpl -v ./merged.yaml
env:
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
UPDATECLI_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected]
- name: Regenerate helm docs if necessary
uses: Alfresco/alfresco-build-tools/.github/actions/[email protected]
with:
pre-commit-args: helm-docs || true
skip_checkout: "true"
- name: Git Auto Commit
uses: stefanzweifel/[email protected]
with:
commit_message: |
🛠 Updatecli pipeline acs bump
commit_user_name: ${{ vars.BOT_GITHUB_USERNAME }}
commit_user_email: ${{ vars.BOT_GITHUB_EMAIL }}
branch: ${{ github.ref_name == 'main' && 'updatecli-bump-acs' || github.ref_name }}
create_branch: ${{ github.ref_name == 'main' }}
push_options: ${{ github.ref_name == 'main' && '--force' || '' }}