Skip to content

Commit d843a8e

Browse files
author
Dominik Przybyl
committed
docs
1 parent 7b49e97 commit d843a8e

File tree

5 files changed

+86
-0
lines changed

5 files changed

+86
-0
lines changed

README.md

+50
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,10 @@ java:
468468
"arm64": "x64"
469469
"aarch64": "x64"
470470

471+
# Vault-Cli tool options
472+
vault:
473+
"download_url": "https://repo1.maven.org/maven2/org/apache/jackrabbit/vault/vault-cli/3.7.2/vault-cli-3.7.2-bin.tar.gz"
474+
471475
base:
472476
# Location of temporary files (downloaded AEM packages, etc)
473477
tmp_dir: aem/home/tmp
@@ -490,6 +494,52 @@ output:
490494
file: aem/home/var/log/aem.log
491495
# Controls where outputs and logs should be written to when format is 'text' (console|file|both)
492496
mode: console
497+
498+
# Content clean options
499+
content:
500+
clean:
501+
# File patterns to be deleted
502+
files_deleted:
503+
- patterns:
504+
- "**/.vlt"
505+
- "**/.vlt*.tmp"
506+
- "**/install/*.jar"
507+
# File patterns to be flattened
508+
files_flattened:
509+
- "**/_cq_design_dialog/.content.xml"
510+
- "**/_cq_dialog/.content.xml"
511+
- "**/_cq_htmlTag/.content.xml"
512+
- "**/_cq_template/.content.xml"
513+
# Property patterns to be skipped, removed from cleaned file
514+
properties_skipped:
515+
- patterns: "jcr:uuid"
516+
excluded_paths: [ "**/home/users/*", "**/home/groups/*" ]
517+
- patterns: "cq:lastModified*"
518+
excluded_paths: [ "**/content/experience-fragments/*" ]
519+
- patterns: [ "dam:sha1", "dam:size" ]
520+
included_paths: [ "**/content/dam/*.svg/*" ]
521+
- patterns:
522+
- "jcr:lastModified*"
523+
- "jcr:created*"
524+
- "jcr:isCheckedOut"
525+
- "cq:lastReplicat*"
526+
- "cq:lastRolledout*"
527+
- "dam:extracted"
528+
- "dam:assetState"
529+
- "dc:modified"
530+
- "*_x0040_*"
531+
- "cq:name"
532+
- "cq:parentPath"
533+
- "dam:copiedAt"
534+
- "dam:parentAssetID"
535+
- "dam:relativePath"
536+
# Mixin type patterns to be skipped, removed from cleaned file
537+
mixin_types_skipped:
538+
- patterns:
539+
- "cq:ReplicationStatus"
540+
- "mix:versionable"
541+
# Unused namespaces to be skipped, removed from cleaned file
542+
namespaces_skipped: true
493543
```
494544

495545
Note that environment variables may be injected in any part of config file.

examples/docker/src/aem/default/etc/aem.yml

+10
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,10 @@ java:
244244
"arm64": "x64"
245245
"aarch64": "x64"
246246

247+
# Vault-Cli tool options
248+
vault:
249+
"download_url": "https://repo1.maven.org/maven2/org/apache/jackrabbit/vault/vault-cli/3.7.2/vault-cli-3.7.2-bin.tar.gz"
250+
247251
base:
248252
# Location of temporary files (downloaded AEM packages, etc)
249253
tmp_dir: aem/home/tmp
@@ -267,18 +271,22 @@ output:
267271
# Controls where outputs and logs should be written to when format is 'text' (console|file|both)
268272
mode: console
269273

274+
# Content clean options
270275
content:
271276
clean:
277+
# File patterns to be deleted
272278
files_deleted:
273279
- patterns:
274280
- "**/.vlt"
275281
- "**/.vlt*.tmp"
276282
- "**/install/*.jar"
283+
# File patterns to be flattened
277284
files_flattened:
278285
- "**/_cq_design_dialog/.content.xml"
279286
- "**/_cq_dialog/.content.xml"
280287
- "**/_cq_htmlTag/.content.xml"
281288
- "**/_cq_template/.content.xml"
289+
# Property patterns to be skipped, removed from cleaned file
282290
properties_skipped:
283291
- patterns: "jcr:uuid"
284292
excluded_paths: [ "**/home/users/*", "**/home/groups/*" ]
@@ -301,8 +309,10 @@ content:
301309
- "dam:copiedAt"
302310
- "dam:parentAssetID"
303311
- "dam:relativePath"
312+
# Mixin type patterns to be skipped, removed from cleaned file
304313
mixin_types_skipped:
305314
- patterns:
306315
- "cq:ReplicationStatus"
307316
- "mix:versionable"
317+
# Unused namespaces to be skipped, removed from cleaned file
308318
namespaces_skipped: true

pkg/project/app_classic/aem/default/etc/aem.yml

+10
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,10 @@ java:
245245
"arm64": "x64"
246246
"aarch64": "x64"
247247

248+
# Vault-Cli tool options
249+
vault:
250+
"download_url": "https://repo1.maven.org/maven2/org/apache/jackrabbit/vault/vault-cli/3.7.2/vault-cli-3.7.2-bin.tar.gz"
251+
248252
base:
249253
# Location of temporary files (downloaded AEM packages, etc)
250254
tmp_dir: aem/home/tmp
@@ -268,18 +272,22 @@ output:
268272
# Controls where outputs and logs should be written to when format is 'text' (console|file|both)
269273
mode: console
270274

275+
# Content clean options
271276
content:
272277
clean:
278+
# File patterns to be deleted
273279
files_deleted:
274280
- patterns:
275281
- "**/.vlt"
276282
- "**/.vlt*.tmp"
277283
- "**/install/*.jar"
284+
# File patterns to be flattened
278285
files_flattened:
279286
- "**/_cq_design_dialog/.content.xml"
280287
- "**/_cq_dialog/.content.xml"
281288
- "**/_cq_htmlTag/.content.xml"
282289
- "**/_cq_template/.content.xml"
290+
# Property patterns to be skipped, removed from cleaned file
283291
properties_skipped:
284292
- patterns: "jcr:uuid"
285293
excluded_paths: [ "**/home/users/*", "**/home/groups/*" ]
@@ -302,8 +310,10 @@ content:
302310
- "dam:copiedAt"
303311
- "dam:parentAssetID"
304312
- "dam:relativePath"
313+
# Mixin type patterns to be skipped, removed from cleaned file
305314
mixin_types_skipped:
306315
- patterns:
307316
- "cq:ReplicationStatus"
308317
- "mix:versionable"
318+
# Unused namespaces to be skipped, removed from cleaned file
309319
namespaces_skipped: true

pkg/project/app_cloud/aem/default/etc/aem.yml

+10
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,10 @@ java:
234234
"arm64": "x64"
235235
"aarch64": "x64"
236236

237+
# Vault-Cli tool options
238+
vault:
239+
"download_url": "https://repo1.maven.org/maven2/org/apache/jackrabbit/vault/vault-cli/3.7.2/vault-cli-3.7.2-bin.tar.gz"
240+
237241
base:
238242
# Location of temporary files (downloaded AEM packages, etc)
239243
tmp_dir: aem/home/tmp
@@ -257,18 +261,22 @@ output:
257261
# Controls where outputs and logs should be written to when format is 'text' (console|file|both)
258262
mode: console
259263

264+
# Content clean options
260265
content:
261266
clean:
267+
# File patterns to be deleted
262268
files_deleted:
263269
- patterns:
264270
- "**/.vlt"
265271
- "**/.vlt*.tmp"
266272
- "**/install/*.jar"
273+
# File patterns to be flattened
267274
files_flattened:
268275
- "**/_cq_design_dialog/.content.xml"
269276
- "**/_cq_dialog/.content.xml"
270277
- "**/_cq_htmlTag/.content.xml"
271278
- "**/_cq_template/.content.xml"
279+
# Property patterns to be skipped, removed from cleaned file
272280
properties_skipped:
273281
- patterns: "jcr:uuid"
274282
excluded_paths: [ "**/home/users/*", "**/home/groups/*" ]
@@ -291,8 +299,10 @@ content:
291299
- "dam:copiedAt"
292300
- "dam:parentAssetID"
293301
- "dam:relativePath"
302+
# Mixin type patterns to be skipped, removed from cleaned file
294303
mixin_types_skipped:
295304
- patterns:
296305
- "cq:ReplicationStatus"
297306
- "mix:versionable"
307+
# Unused namespaces to be skipped, removed from cleaned file
298308
namespaces_skipped: true

pkg/project/instance/aem/default/etc/aem.yml

+6
Original file line numberDiff line numberDiff line change
@@ -273,18 +273,22 @@ output:
273273
# Controls where outputs and logs should be written to when format is 'text' (console|file|both)
274274
mode: console
275275

276+
# Content clean options
276277
content:
277278
clean:
279+
# File patterns to be deleted
278280
files_deleted:
279281
- patterns:
280282
- "**/.vlt"
281283
- "**/.vlt*.tmp"
282284
- "**/install/*.jar"
285+
# File patterns to be flattened
283286
files_flattened:
284287
- "**/_cq_design_dialog/.content.xml"
285288
- "**/_cq_dialog/.content.xml"
286289
- "**/_cq_htmlTag/.content.xml"
287290
- "**/_cq_template/.content.xml"
291+
# Property patterns to be skipped, removed from cleaned file
288292
properties_skipped:
289293
- patterns: "jcr:uuid"
290294
excluded_paths: [ "**/home/users/*", "**/home/groups/*" ]
@@ -307,8 +311,10 @@ content:
307311
- "dam:copiedAt"
308312
- "dam:parentAssetID"
309313
- "dam:relativePath"
314+
# Mixin type patterns to be skipped, removed from cleaned file
310315
mixin_types_skipped:
311316
- patterns:
312317
- "cq:ReplicationStatus"
313318
- "mix:versionable"
319+
# Unused namespaces to be skipped, removed from cleaned file
314320
namespaces_skipped: true

0 commit comments

Comments
 (0)