2020-02-23 08:48:26 +00:00
|
|
|
package rootlessports
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-04-21 22:43:36 +00:00
|
|
|
|
2021-07-03 08:37:19 +00:00
|
|
|
coreClients "github.com/rancher/wrangler/pkg/generated/controllers/core/v1"
|
2020-02-23 08:48:26 +00:00
|
|
|
)
|
|
|
|
|
2020-04-21 22:43:36 +00:00
|
|
|
func Register(ctx context.Context, serviceController coreClients.ServiceController, enabled bool, httpsPort int) error {
|
2020-02-23 08:48:26 +00:00
|
|
|
panic("Rootless is not supported on windows")
|
|
|
|
}
|