2020-10-06 00:28:19 +00:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"k8s.io/client-go/pkg/version"
|
|
|
|
"k8s.io/client-go/rest"
|
|
|
|
restclient "k8s.io/client-go/rest"
|
|
|
|
"k8s.io/component-base/logs"
|
|
|
|
"k8s.io/klog/v2"
|
|
|
|
|
2020-10-07 14:53:05 +00:00
|
|
|
pinnipedclientset "go.pinniped.dev/generated/1.19/client/clientset/versioned"
|
|
|
|
pinnipedinformers "go.pinniped.dev/generated/1.19/client/informers/externalversions"
|
2020-10-06 00:28:19 +00:00
|
|
|
"go.pinniped.dev/internal/controller/supervisorconfig"
|
|
|
|
"go.pinniped.dev/internal/controllerlib"
|
|
|
|
"go.pinniped.dev/internal/downward"
|
2020-10-06 14:11:57 +00:00
|
|
|
"go.pinniped.dev/internal/oidc/discovery"
|
|
|
|
"go.pinniped.dev/internal/oidc/issuerprovider"
|
2020-10-06 00:28:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
singletonWorker = 1
|
|
|
|
defaultResyncInterval = 3 * time.Minute
|
|
|
|
)
|
|
|
|
|
2020-10-06 14:11:57 +00:00
|
|
|
func start(ctx context.Context, l net.Listener, discoveryHandler http.Handler) {
|
2020-10-06 00:28:19 +00:00
|
|
|
server := http.Server{
|
2020-10-07 15:33:50 +00:00
|
|
|
Handler: discoveryHandler,
|
2020-10-06 00:28:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
errCh := make(chan error)
|
|
|
|
go func() {
|
|
|
|
errCh <- server.Serve(l)
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case err := <-errCh:
|
|
|
|
klog.InfoS("server exited", "err", err)
|
|
|
|
case <-ctx.Done():
|
|
|
|
klog.InfoS("server context cancelled", "err", ctx.Err())
|
|
|
|
if err := server.Shutdown(context.Background()); err != nil {
|
|
|
|
klog.InfoS("server shutdown failed", "err", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func waitForSignal() os.Signal {
|
|
|
|
signalCh := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(signalCh, os.Interrupt)
|
|
|
|
return <-signalCh
|
|
|
|
}
|
|
|
|
|
|
|
|
func startControllers(
|
|
|
|
ctx context.Context,
|
2020-10-06 14:11:57 +00:00
|
|
|
issuerProvider *issuerprovider.Provider,
|
2020-10-07 14:53:05 +00:00
|
|
|
pinnipedInformers pinnipedinformers.SharedInformerFactory,
|
2020-10-06 00:28:19 +00:00
|
|
|
) {
|
|
|
|
// Create controller manager.
|
|
|
|
controllerManager := controllerlib.
|
|
|
|
NewManager().
|
|
|
|
WithController(
|
|
|
|
supervisorconfig.NewDynamicConfigWatcherController(
|
2020-10-06 14:11:57 +00:00
|
|
|
issuerProvider,
|
2020-10-07 14:53:05 +00:00
|
|
|
pinnipedInformers.Config().V1alpha1().OIDCProviderConfigs(),
|
2020-10-06 00:28:19 +00:00
|
|
|
controllerlib.WithInformer,
|
|
|
|
),
|
|
|
|
singletonWorker,
|
|
|
|
)
|
|
|
|
|
2020-10-07 14:53:05 +00:00
|
|
|
pinnipedInformers.Start(ctx.Done())
|
2020-10-06 00:28:19 +00:00
|
|
|
|
|
|
|
go controllerManager.Start(ctx)
|
|
|
|
}
|
|
|
|
|
2020-10-07 14:53:05 +00:00
|
|
|
func newPinnipedClient() (pinnipedclientset.Interface, error) {
|
2020-10-06 00:28:19 +00:00
|
|
|
kubeConfig, err := restclient.InClusterConfig()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not load in-cluster configuration: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect to the core Kubernetes API.
|
2020-10-07 14:53:05 +00:00
|
|
|
pinnipedClient, err := pinnipedclientset.NewForConfig(kubeConfig)
|
2020-10-06 00:28:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not load in-cluster configuration: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-10-07 14:53:05 +00:00
|
|
|
return pinnipedClient, nil
|
2020-10-06 00:28:19 +00:00
|
|
|
}
|
|
|
|
|
2020-10-07 14:53:05 +00:00
|
|
|
func run(serverInstallationNamespace string) error {
|
2020-10-06 00:28:19 +00:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
2020-10-07 14:53:05 +00:00
|
|
|
pinnipedClient, err := newPinnipedClient()
|
2020-10-06 00:28:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("cannot create k8s client: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-10-07 14:53:05 +00:00
|
|
|
pinnipedInformers := pinnipedinformers.NewSharedInformerFactoryWithOptions(
|
|
|
|
pinnipedClient,
|
2020-10-06 00:28:19 +00:00
|
|
|
defaultResyncInterval,
|
2020-10-07 14:53:05 +00:00
|
|
|
pinnipedinformers.WithNamespace(serverInstallationNamespace),
|
2020-10-06 00:28:19 +00:00
|
|
|
)
|
|
|
|
|
2020-10-06 14:11:57 +00:00
|
|
|
issuerProvider := issuerprovider.New()
|
2020-10-07 14:53:05 +00:00
|
|
|
startControllers(ctx, issuerProvider, pinnipedInformers)
|
2020-10-06 00:28:19 +00:00
|
|
|
|
|
|
|
//nolint: gosec // Intentionally binding to all network interfaces.
|
|
|
|
l, err := net.Listen("tcp", ":80")
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("cannot create listener: %w", err)
|
|
|
|
}
|
|
|
|
defer l.Close()
|
|
|
|
|
2020-10-06 14:11:57 +00:00
|
|
|
start(ctx, l, discovery.New(issuerProvider))
|
2020-10-06 00:28:19 +00:00
|
|
|
klog.InfoS("supervisor is ready", "address", l.Addr().String())
|
|
|
|
|
|
|
|
gotSignal := waitForSignal()
|
|
|
|
klog.InfoS("supervisor exiting", "signal", gotSignal)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
logs.InitLogs()
|
|
|
|
defer logs.FlushLogs()
|
|
|
|
|
|
|
|
klog.Infof("Running %s at %#v", rest.DefaultKubernetesUserAgent(), version.Get())
|
|
|
|
klog.Infof("Command-line arguments were: %s %s %s", os.Args[0], os.Args[1], os.Args[2])
|
|
|
|
|
|
|
|
// Discover in which namespace we are installed.
|
|
|
|
podInfo, err := downward.Load(os.Args[1])
|
|
|
|
if err != nil {
|
|
|
|
klog.Fatal(fmt.Errorf("could not read pod metadata: %w", err))
|
|
|
|
}
|
|
|
|
|
2020-10-07 14:53:05 +00:00
|
|
|
if err := run(podInfo.Namespace); err != nil {
|
2020-10-06 00:28:19 +00:00
|
|
|
klog.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|