Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to discovery config #268

Merged
merged 1 commit into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ properties:
nullable: true
additionalProperties:
type: object
properties:
ipv4:
properties:
ipv4:
description: The IPv4 address the discovery server should return to any container instance requesting this hostname.
type: string
nullable: true
ipv6:
type: array
items:
type: string
ipv6:
description: The IPv6 address the discovery server should return to any container instance requesting this hostname.
type: string
nullable: true
type: array
items:
type: string
20 changes: 20 additions & 0 deletions components/schemas/stacks/spec/StackSpec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,26 @@ properties:
nullable: true
type: object
properties:
discovery:
type: object
nullable: true
properties:
hosts:
nullable: true
type: object
additionalProperties:
type: object
properties:
ipv4:
nullable: true
type: array
items:
type: string
ipv6:
nullable: true
type: array
items:
type: string
loadbalancer:
$ref: services/loadbalancer/StackSpecLoadBalancerConfig.yml
vpn:
Expand Down