Skip to content
Snippets Groups Projects

Compute and render service dependency graphs

Merged ale requested to merge flow into master
24 files
+ 1684
76
Compare changes
  • Side-by-side
  • Inline
Files
24
@@ -75,6 +75,13 @@ type Service struct {
Containers []Container `yaml:"containers,omitempty"`
SystemdServices []string `yaml:"systemd_services,omitempty"`
Datasets []Dataset `yaml:"datasets,omitempty"`
Annotations struct {
Dependencies []struct {
Client string `yaml:"client"`
Server string `yaml:"server"`
} `yaml:"dependencies"`
} `yaml:"annotations,omitempty"`
}
type TaggedPort struct {
Loading