aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/cephstorage-config.yaml
AgeCommit message (Collapse)AuthorFilesLines
2016-09-21Define step input as a Number typeSteven Hardy1-0/+3
Currently we pass numbers in (hard-coded in post.j2.yaml) but the SoftwareConfig schema defaults to String. If puppet requires an integer number, setting this type may help preserve the type for the hook. Change-Id: Ie9227d7adb58ea3c791aa459a1ab5b17ad935919
2016-09-09Move role deployment steps into puppet/post.yamlSteven Hardy1-0/+38
To enable steps to be aligned between roles, we need to define dependencies between the steps, which is only possible if we move the steps out of distinct nested stacks so we can use depends_on to serialized the steps for all roles. Note that we may be able to further refactor later to remove the per-role -config.yaml nested stacks as well. Change-Id: Ia2ea559e8eeb64763908f75705e3728ee90b5744 Partially-Implements: blueprint custom-roles