mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-06-03 13:43:22 -04:00
AB#2261 Add loadbalancer for control-plane recovery (#151)
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
273d89e002
commit
e367e1a68b
16 changed files with 418 additions and 243 deletions
|
@ -42,7 +42,7 @@ const (
|
|||
KMSPort = 9000
|
||||
BootstrapperPort = 9000
|
||||
KubernetesPort = 6443
|
||||
RecoveryPort = 9000
|
||||
RecoveryPort = 9999
|
||||
EnclaveSSHPort = 2222
|
||||
SSHPort = 22
|
||||
NVMEOverTCPPort = 8009
|
||||
|
|
|
@ -49,6 +49,13 @@ var (
|
|||
IPRange: "0.0.0.0/0",
|
||||
FromPort: KonnectivityPort,
|
||||
},
|
||||
{
|
||||
Name: "recovery",
|
||||
Description: "control-plane recovery",
|
||||
Protocol: "tcp",
|
||||
IPRange: "0.0.0.0/0",
|
||||
FromPort: RecoveryPort,
|
||||
},
|
||||
}
|
||||
|
||||
// IngressRulesDebug is the default set of ingress rules for a Constellation cluster with debug mode.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue