Skip to content

Commit

Permalink
Add "check-api-lb" subcommand
Browse files Browse the repository at this point in the history
This command is used by bootstrap to verify that bootstrap instance is ready to be shutdown
  • Loading branch information
vrutkovs committed May 21, 2024
1 parent 313bc06 commit 6a39fcb
Show file tree
Hide file tree
Showing 2 changed files with 178 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/cluster-kube-apiserver-operator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import (
"github.com/openshift/library-go/pkg/operator/staticpod/startupmonitor"

"github.com/openshift/cluster-kube-apiserver-operator/pkg/cmd/certregenerationcontroller"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/cmd/checkapilb"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/cmd/checkendpoints"
"github.com/openshift/cluster-kube-apiserver-operator/pkg/cmd/insecurereadyz"
operatorcmd "github.com/openshift/cluster-kube-apiserver-operator/pkg/cmd/operator"
Expand Down Expand Up @@ -64,6 +65,7 @@ func NewOperatorCommand(ctx context.Context) *cobra.Command {
}
return client.KubeAPIServers(), nil
}))
cmd.AddCommand(checkapilb.NewCheckAPILBCommand(ctx))

return cmd
}
176 changes: 176 additions & 0 deletions pkg/cmd/checkapilb/cmd.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
package checkapilb

import (
"context"
"fmt"
"net/url"
"time"

"github.com/spf13/cobra"
"github.com/spf13/pflag"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/serializer"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/klog/v2"

configv1client "github.com/openshift/client-go/config/clientset/versioned"
"github.com/openshift/library-go/pkg/config/client"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

var (
globalTimeout = 5 * time.Minute
retryTimeout = 5 * time.Second
)

// checkAPILBOpts holds values to drive the check-api-server command.
type checkAPILBOpts struct {
ctx context.Context
KubeConfig string

RestConfig *rest.Config
KubeClient kubernetes.Interface
}

// NewRenderCommand creates a check-api-server command.
func NewCheckAPILBCommand(ctx context.Context) *cobra.Command {
return newCheckAPILBCommand(ctx)
}

func newCheckAPILBCommand(ctx context.Context, testOverrides ...func(*checkAPILBOpts)) *cobra.Command {
renderOpts := checkAPILBOpts{
ctx: ctx,
}
for _, f := range testOverrides {
f(&renderOpts)
}
cmd := &cobra.Command{
Use: "check-api-lb",
Short: "Verify that API loadbalancer can serve API without bootstrap node",
Run: func(cmd *cobra.Command, args []string) {
if err := renderOpts.Validate(); err != nil {
klog.Fatal(err)
}
if err := renderOpts.Complete(); err != nil {
klog.Fatal(err)
}
if err := renderOpts.Run(); err != nil {
klog.Fatal(err)
}
},
}

renderOpts.AddFlags(cmd.Flags())

return cmd
}

func (o *checkAPILBOpts) AddFlags(fs *pflag.FlagSet) {
fs.StringVar(&o.KubeConfig, "kubeconfig", o.KubeConfig, "kubeconfig file or empty")
}

// Validate verifies the inputs.
func (r *checkAPILBOpts) Validate() error {
restConfig, err := client.GetKubeConfigOrInClusterConfig(r.KubeConfig, nil)
if err != nil {
klog.Fatalf("invalid kubeconfig set: %v", err)
}
r.RestConfig = rest.CopyConfig(restConfig)

r.KubeClient = kubernetes.NewForConfigOrDie(restConfig)
return nil
}

// Complete fills in missing values before command execution.
func (r *checkAPILBOpts) Complete() error {
return nil
}

// Run contains the logic of the check-api-server command.
func (r *checkAPILBOpts) Run() error {
pollCtx, pollCancel := context.WithTimeout(context.Background(), globalTimeout)
defer pollCancel()

attempt := 0
return wait.PollImmediateUntil(time.Second, func() (done bool, err error) {
retryCtx, retryCancel := context.WithTimeout(context.Background(), retryTimeout)
defer retryCancel()
attempt += 1
klog.Infof("Attempt #%d", attempt)
if err := r.checkAPIEndpoints(retryCtx); err != nil {
klog.Infof("error checking kubernetes endpoints: %v", err)
return false, nil
}
if err := r.checkLBUrls(retryCtx); err != nil {
klog.Infof("error checking apiserver via LB: %v", err)
return false, nil
}
return true, nil
}, pollCtx.Done())
}

func (r *checkAPILBOpts) checkLBUrls(ctx context.Context) error {
configClient, err := configv1client.NewForConfig(r.RestConfig)
if err != nil {
return fmt.Errorf("failed to create config client from config: %v", err)
}
infra, err := configClient.ConfigV1().Infrastructures().Get(ctx, "cluster", metav1.GetOptions{})
if err != nil {
return fmt.Errorf("failed to fetch cluster infrastructure: %v", err)
}
for _, urlString := range []string{infra.Status.APIServerURL, infra.Status.APIServerInternalURL} {
apiUrl, err := url.Parse(urlString)
if err != nil {
return fmt.Errorf("malformed url %s: %v", apiUrl.String(), err)
}
if err = r.checkUrl(ctx, apiUrl.String()); err != nil {
return fmt.Errorf("error checking url %s: %v", apiUrl.String(), err)
}
}
return nil
}

func (r *checkAPILBOpts) checkAPIEndpoints(ctx context.Context) error {
endpoint, err := r.KubeClient.CoreV1().Endpoints("default").Get(ctx, "kubernetes", metav1.GetOptions{})
if err != nil {
return fmt.Errorf("failed to list kubernetes endpoints: %v", err)
}
addresses := []string{}
for i, subset := range endpoint.Subsets {
for _, address := range subset.Addresses {
klog.Infof("found %s address in %d subset", address.IP, i)
addresses = append(addresses, address.IP)
}
}
if len(addresses) < 2 {
return fmt.Errorf("expected at least two addresses, got %v", addresses)
}
return nil
}

func (r *checkAPILBOpts) checkUrl(ctx context.Context, url string) error {
restConfig, err := clientcmd.BuildConfigFromFlags(url, r.KubeConfig)
if err != nil {
return fmt.Errorf("unable to build restConfig: %v", err)
}
restConfig.NegotiatedSerializer = serializer.NewCodecFactory(runtime.NewScheme())
if err := rest.SetKubernetesDefaults(restConfig); err != nil {
return fmt.Errorf("unable to set kube defaults: %v", err)
}
restClient, err := rest.UnversionedRESTClientFor(restConfig)
if err != nil {
return fmt.Errorf("unable to create rest client: %v", err)
}
var status int
if err := restClient.Get().AbsPath("/readyz").Do(ctx).StatusCode(&status).Error(); err != nil {
return fmt.Errorf("not yet ready: %v", err)
}
if status < 200 || status >= 400 {
return fmt.Errorf("not yet ready: received http status %d", status)
}
klog.Infof("url %s is ready", url)
return nil
}

0 comments on commit 6a39fcb

Please sign in to comment.