mirror of
https://github.com/tailscale/tailscale.git
synced 2025-10-29 07:09:33 +00:00
cmd/k8s-operator: add replica support to nameserver (#17246)
This commit modifies the `DNSConfig` custom resource to allow specifying a replica count when deploying a nameserver. This allows deploying nameservers in a HA configuration. Updates https://github.com/tailscale/corp/issues/32589 Signed-off-by: David Bond <davidsbond93@gmail.com>
This commit is contained in:
@@ -100,6 +100,11 @@ spec:
|
||||
tag:
|
||||
description: Tag defaults to unstable.
|
||||
type: string
|
||||
replicas:
|
||||
description: Replicas specifies how many Pods to create. Defaults to 1.
|
||||
type: integer
|
||||
format: int32
|
||||
minimum: 0
|
||||
service:
|
||||
description: Service configuration.
|
||||
type: object
|
||||
|
||||
@@ -431,6 +431,11 @@ spec:
|
||||
description: Tag defaults to unstable.
|
||||
type: string
|
||||
type: object
|
||||
replicas:
|
||||
description: Replicas specifies how many Pods to create. Defaults to 1.
|
||||
format: int32
|
||||
minimum: 0
|
||||
type: integer
|
||||
service:
|
||||
description: Service configuration.
|
||||
properties:
|
||||
|
||||
Reference in New Issue
Block a user