github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v2/content/en/docs/references/yaml/_index.html (about) 1 --- 2 title: "skaffold.yaml" 3 linkTitle: "skaffold.yaml" 4 weight: 20 5 menu: 6 main: 7 weight: 30 8 --- 9 10 {{< alert title="💡 Tip" >}} 11 The Cloud Code IDE extensions (see [install options]({{< relref "../../install/#managed-ide" >}})) provide authoring assistance for `skaffold.yaml` files in the form of schema based validation, diagnostics, quick documentation, code completions, and snippets, that can make it easier to create and edit these files. 12 13 You can now navigate the `skaffold.yaml` reference from an inner element to its upper levels using the tooltip that appears on hover, clicking on the parent element you want to go: <div class="tooltip-img-continaer"></div> 14 {{< /alert >}} 15 16 <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700" rel="stylesheet"> 17 <link rel="stylesheet" type="text/css" href="main.css"> 18 <script type="module" src="main.js"></script> 19 {{< alert title="Note" >}} 20 <p id="version-info"></p> 21 {{< /alert >}} 22 <table id="table" data-version="{{% skaffold-version %}}" latest="{{% skaffold-version %}}"></table> 23 24 <h3>YAML anchors</h3> 25 <p> 26 Anchors can be defined by having top-level keys starting with a dot, e.g. <code>.common_stuff: &alias_name</code>. 27 You can then reuse the value using <code>*alias_name</code>. 28 </p> 29 30 <h3>Organizing multiple configurations</h3> 31 <p> 32 Multiple configurations can define dependencies on each other to construct an arbitrarily nested tree of project component dependencies. Management of multiple configurations can be simplified by grouping them together in the same file (separated by --- in YAML). 33 </p>