I have multiple yaml files, but we have to add a addition parameter only if specific template matches. Ex:
stages:
- template: templates/my-java-service-v1.yaml@codeway
parameters:
lintingParams:
skipSchemaValidation: false
openJdkVersion: 17
Here openJdkVersion
is an addition parameter should be added in existing yaml only if template templates/my-java-service-v1.yaml@codeway
matches.
In current recipes only supports for a sequencePath
match. but here I have same sequencePath
for multiple places, so need to filter with specific template.