skaffold.yaml
💡 Tip
The Cloud Code IDE extensions (see install options) provide authoring assistance forskaffold.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.
YAML anchors
Anchors can be defined by having top-level keys starting with a dot, e.g. .common_stuff: &alias_name
.
You can then reuse the value using *alias_name
.
Organizing multiple configurations
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).
Last modified November 17, 2021: docs: link cloud code support for updating skaffold.yaml files (#6866) (9f56bbd6b)