2022-09-05 09:06:08 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-05-24 10:04:42 +02:00
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2024-02-08 14:20:01 +00:00
|
|
|
"log/slog"
|
2022-07-15 09:33:11 +02:00
|
|
|
"net"
|
2022-05-24 10:04:42 +02:00
|
|
|
|
2023-01-06 12:04:36 +01:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/versions/components"
|
2022-05-24 10:04:42 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type clusterUtil interface {
|
2023-01-06 12:04:36 +01:00
|
|
|
InstallComponents(ctx context.Context, kubernetesComponents components.Components) error
|
2024-02-08 14:20:01 +00:00
|
|
|
InitCluster(ctx context.Context, initConfig []byte, nodeName, clusterName string, ips []net.IP, conformanceMode bool, log *slog.Logger) ([]byte, error)
|
|
|
|
JoinCluster(ctx context.Context, joinConfig []byte, log *slog.Logger) error
|
2022-10-18 13:15:54 +02:00
|
|
|
StartKubelet() error
|
|
|
|
}
|