devsecopsmaturitymodel / DevSecOps-MaturityModel

GNU General Public License v3.0
460 stars 266 forks source link

Multiple "dependsOn" keys in YAML file entry. #235

Closed lzandman closed 11 months ago

lzandman commented 1 year ago

I was creating a little tool that parses the YAML files in this project and noticed the Deployment.yaml file contains an entry that has multiple dependsOn keys, which caused my YAML-parser to throw an Exception, because that's not allowed in YAML: https://github.com/wurstbrot/DevSecOps-MaturityModel/blob/66aaf0c35337c1f6887edbf5fd55fb57d656f680/src/assets/YAML/default/BuildAndDeployment/Deployment.yaml#L173C10-L180

lzandman commented 11 months ago

Looks like this has been fixed in commit 0264031 by @Tamronimus, probably because this syntax error was discovered when #236 was implemented.