Skip to content

Commit 8e80050

Browse files
authored
OPSEXP-2880 Add audit-storage role (#996)
1 parent 76d5df4 commit 8e80050

File tree

24 files changed

+356
-58
lines changed

24 files changed

+356
-58
lines changed

.envrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export AWS_REGION=eu-west-1
44
export MOLECULE_IT_AWS_VPC_SUBNET_ID=subnet-6bdd4223
55
export BRANCH_NAME=local
66
export BUILD_NUMBER=1
7-
export DTAS_VERSION=v1.5.3
7+
export DTAS_VERSION=v1.6.0
88
export MOLECULE_IT_ID=$(echo "$LOGNAME" | sha256sum | cut -c1-6)
99
ANSIBLE_VAULT_PASSWORD_FILE=$(expand_path ./.vault_pass.txt)
1010
export ANSIBLE_VAULT_PASSWORD_FILE

.github/workflows/enteprise.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
workflow_dispatch:
2020

2121
env:
22-
DTAS_VERSION: v1.5.5
22+
DTAS_VERSION: v1.6.0
2323
BUILD_NUMBER: ${{ github.run_id }}
2424
PY_COLORS: 1
2525
PYTHONUNBUFFERED: 1
@@ -70,6 +70,7 @@ jobs:
7070
- name: sfs
7171
- name: sync
7272
- name: trouter
73+
- name: audit_storage
7374
steps:
7475
- name: Share var with further reusable workflows
7576
id: jobvars
@@ -164,6 +165,12 @@ jobs:
164165
fail-fast: false
165166
matrix:
166167
molecule_scenario:
168+
- name: default
169+
vars: vars-ubuntu20-72.yml
170+
desc: EC2 ACS 7.2 (Ubuntu 20.04)
171+
- name: default
172+
vars: vars-ubuntu20-73.yml
173+
desc: EC2 ACS 7.3 (Ubuntu 20.04)
167174
- name: default
168175
vars: vars-rocky8.yml
169176
desc: EC2 ACS 7.4 (Rocky Linux 8.9)

.github/workflows/enterprise-extended.yml

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

7.2.N-extra-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ search_enterprise:
2727
search:
2828
artifact_name: alfresco-search-services
2929
repository: "{{ nexus_repository.releases }}"
30-
version: 2.0.13
30+
version: 2.0.12 # ACS-9048
3131
transform:
3232
artifact_name: alfresco-transform-core-aio
3333
repository: "{{ nexus_repository.releases }}"

7.3.N-extra-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ search_enterprise:
2727
search:
2828
artifact_name: alfresco-search-services
2929
repository: "{{ nexus_repository.releases }}"
30-
version: 2.0.13
30+
version: 2.0.12 # ACS-9048
3131
transform:
3232
artifact_name: alfresco-transform-core-aio
3333
repository: "{{ nexus_repository.releases }}"

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,7 @@ Follow this quick checklist:
194194

195195
* review currently open dependabot/renovate and merge them
196196
* copy the versions inside the group_vars/all.yml to a new XX.N-extra-vars.yml (in case of a new ACS major version)
197-
* run [updatecli workflow](https://github.com/Alfresco/alfresco-ansible-deployment/actions/workflows/updatecli.yml)
198-
* run [enterprise-extended](https://github.com/Alfresco/alfresco-ansible-deployment/actions/workflows/enterprise-extended.yml) and make sure it is green
197+
* bump versions constraints in scripts/updatecli/updatecli_acs*.yml (workflow will take care of the rest)
199198
* ensure that the [versions table in the main readme](docs/overview.md#versioning) has been updated
200199
* ensure that docker images and AMI id for the root molecule tests are
201200
reflecting any minor OS release (e.g. [default suite](../molecule/default/))

group_vars/all.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ api_explorer:
4646
artifact_name: api-explorer
4747
repository: "{{ nexus_repository.releases }}"
4848
version: 23.4.0
49+
audit_storage:
50+
artifact_name: alfresco-audit-storage-distribution
51+
repository: "{{ nexus_repository.enterprise_releases }}"
52+
version: 1.0.0
4953
search_enterprise:
5054
artifact_name: alfresco-elasticsearch-connector-distribution
5155
repository: "{{ nexus_repository.enterprise_releases }}"
@@ -122,6 +126,10 @@ downloads:
122126
{{ adw.repository }}/{{ adw.artifact_name }}/{{ adw.version }}/{{ adw.artifact_name }}-{{ adw.version }}.zip
123127
adw_zip_sha1_checksum_url: >-
124128
{{ adw.repository }}/{{ adw.artifact_name }}/{{ adw.version }}/{{ adw.artifact_name }}-{{ adw.version }}.zip.sha1
129+
audit_storage_zip_url: >-
130+
{{ audit_storage.repository }}/{{ audit_storage.artifact_name }}/{{ audit_storage.version }}/{{ audit_storage.artifact_name }}-{{ audit_storage.version }}.zip
131+
audit_storage_zip_sha1_checksum_url: >-
132+
{{ audit_storage.repository }}/{{ audit_storage.artifact_name }}/{{ audit_storage.version }}/{{ audit_storage.artifact_name }}-{{ audit_storage.version }}.zip.sha1
125133
search_enterprise_zip_url: >-
126134
{{ search_enterprise.repository }}/{{ search_enterprise.artifact_name }}/{{ search_enterprise.version }}/{{ search_enterprise.artifact_name }}-{{ search_enterprise.version }}.zip
127135
search_enterprise_zip_sha1_url: >-

inventory_ha.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ all:
6767
hosts:
6868
sync.infra.local:
6969

70+
audit_storage:
71+
hosts:
72+
audit.infra.local:
73+
7074
other_repo_clients:
7175
hosts:
7276

inventory_local.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ all:
5555
children:
5656
repository:
5757

58+
audit_storage:
59+
children:
60+
repository:
61+
5862
other_repo_clients:
5963
hosts:
6064

inventory_ssh.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ all:
7272
syncservice_1:
7373
ansible_host: targetIP
7474

75+
audit_storage:
76+
hosts:
77+
audit_storage_1:
78+
ansible_host: targetIP
79+
7580
other_repo_clients:
7681
hosts:
7782

0 commit comments

Comments
 (0)