github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v1/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 {{< /alert >}} 13 14 <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700" rel="stylesheet"> 15 <link rel="stylesheet" type="text/css" href="main.css"> 16 <script type="module" src="main.js"></script> 17 <table id="table" data-version="{{% skaffold-version %}}" latest="{{% skaffold-version %}}"></table> 18 19 <h3>YAML anchors</h3> 20 <p> 21 Anchors can be defined by having top-level keys starting with a dot, e.g. <code>.common_stuff: &alias_name</code>. 22 You can then reuse the value using <code>*alias_name</code>. 23 </p> 24 25 <h3>Organizing multiple configurations</h3> 26 <p> 27 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). 28 </p>