-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add yaml anchor/fragments support
ref: #39
- Loading branch information
1 parent
98d2f92
commit 4d9826f
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: fragment-example | ||
x-shared-links: &shared-links | ||
links: | ||
- "foo:foo.example.svc.cluster.local" | ||
- "bar:bar.example.svc.cluster.local" | ||
x-shared-image: &shared-image | ||
image: traefik/whoami | ||
x-shared-ports: &shared-ports | ||
- '81' | ||
- '80:80' | ||
services: | ||
app_bar: | ||
image: traefik/whoami | ||
<<: *shared-links | ||
app_foo: | ||
<<: *shared-links | ||
image: traefik/whoami:v1.10 | ||
bar: | ||
<<: *shared-image | ||
ports: *shared-ports | ||
foo: | ||
<<: [*shared-image, *shared-links] |