Skip to content

Commit

Permalink
use existing logic to determine when a deployment has rolled out
Browse files Browse the repository at this point in the history
  • Loading branch information
xrstf committed Mar 13, 2024
1 parent df62725 commit faa6e74
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 68 deletions.
8 changes: 4 additions & 4 deletions pkg/ee/default-application-catalog/application_catalog.go
Expand Up @@ -58,15 +58,15 @@ func DeployDefaultApplicationCatalog(ctx context.Context, logger *logrus.Entry,
return fmt.Errorf("failed to fetch ApplicationDefinitions: %w", err)
}

sublogger.Infof("Waiting for webhook %q with version %q to become ready", common.WebhookDeploymentName, opt.Versions.Kubermatic)
operatorDeploySelector := &appsv1.Deployment{
sublogger.Info("Waiting for KKP webhook to become ready…")
webhook := &appsv1.Deployment{
ObjectMeta: metav1.ObjectMeta{
Name: common.WebhookDeploymentName,
Namespace: resources.KubermaticNamespace,
},
}
if err := util.WaitForUpdatedDeployment(ctx, operatorDeploySelector, opt.Versions.Kubermatic, kubeClient, 5*time.Minute); err != nil {
return fmt.Errorf("failed waiting for webhook to come ready %w", err)
if err := util.WaitForDeploymentRollout(ctx, kubeClient, webhook, opt.Versions.Kubermatic, 5*time.Minute); err != nil {
return fmt.Errorf("failed waiting for webhook: %w", err)
}

creators := []kkpreconciling.NamedApplicationDefinitionReconcilerFactory{}
Expand Down
64 changes: 0 additions & 64 deletions pkg/install/util/deploy.go

This file was deleted.

51 changes: 51 additions & 0 deletions pkg/install/util/deployment.go
@@ -0,0 +1,51 @@
/*
Copyright 2024 The Kubermatic Kubernetes Platform contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package util

import (
"context"
"time"

"k8c.io/kubermatic/v2/pkg/kubernetes"
"k8c.io/kubermatic/v2/pkg/resources"

appsv1 "k8s.io/api/apps/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/util/wait"
ctrlruntimeclient "sigs.k8s.io/controller-runtime/pkg/client"
)

// WaitForDeploymentRollout queries k8s until a deployment with the supplied version exists and
// has been rolled out, or until the timeout is reached.
func WaitForDeploymentRollout(ctx context.Context, client ctrlruntimeclient.Client, deployment *appsv1.Deployment, version string, timeout time.Duration) error {
return wait.PollUntilContextTimeout(ctx, 1*time.Second, timeout, true, func(ctx context.Context) (bool, error) {
dep := &appsv1.Deployment{}
if err := client.Get(ctx, ctrlruntimeclient.ObjectKeyFromObject(deployment), dep); err != nil {
if apierrors.IsNotFound(err) {
return false, nil
}

return false, err
}

if dep.Labels[resources.VersionLabel] != version {
return false, nil
}

return kubernetes.IsDeploymentRolloutComplete(dep, 0)
})
}

0 comments on commit faa6e74

Please sign in to comment.