coordinator-core: add multi coordinator Kubernetes integration (#39)

Signed-off-by: Benedict Schlueter <bs@edgeless.systems>
This commit is contained in:
Benedict Schlueter 2022-04-25 17:26:17 +02:00 committed by Benedict Schlüter
parent 0ac9617dac
commit 86178df205
19 changed files with 359 additions and 154 deletions

View file

@ -328,15 +328,15 @@ func newVPN(netw *network, publicEndpoint string) *fakeVPN {
}
}
func (*fakeVPN) Setup(privKey []byte) ([]byte, error) {
return nil, nil
func (*fakeVPN) Setup(privKey []byte) error {
return nil
}
func (*fakeVPN) GetPrivateKey() ([]byte, error) {
return nil, nil
}
func (*fakeVPN) GetPublicKey(privKey []byte) ([]byte, error) {
func (*fakeVPN) GetPublicKey() ([]byte, error) {
return nil, nil
}