タグ付けされた質問 「templating」

2
Saltstackの柱から依存関係を構築する
Saltでダミー状態を作成して、柱から派生したリストから依存関係をプルしようとしています。 私のtop.slsファイルには、次のものが含まれています。 base: '*': - components 次に、でcomponents.sls私は持っています: {% if 'components' in pillar.items() %} include: {% for component in pillar.get('components',[]) %} - {{ component }} {% endfor %} {% endif %} {% if 'components' in pillar.items() %} components: require: {% for component in pillar.get('components',[]) %} - {{ component }} {% endfor …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.