2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-05-24 04:04:42 -04:00
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2024-02-08 09:20:01 -05:00
|
|
|
"log/slog"
|
2022-07-15 03:33:11 -04:00
|
|
|
"net"
|
2022-05-24 04:04:42 -04:00
|
|
|
|
2023-01-06 06:04:36 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/versions/components"
|
2022-05-24 04:04:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type clusterUtil interface {
|
2023-01-06 06:04:36 -05:00
|
|
|
InstallComponents(ctx context.Context, kubernetesComponents components.Components) error
|
2024-02-08 09:20:01 -05: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 07:15:54 -04:00
|
|
|
StartKubelet() error
|
|
|
|
}
|