mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-11-29 18:27:58 +08:00
change build bug
This commit is contained in:
parent
2140137041
commit
b50b23b71d
@ -1,5 +1,5 @@
|
||||
#! /bin/bash
|
||||
|
||||
export VERSION=v5.3.0-release
|
||||
export VERSION=v5.3.1-release
|
||||
export BUILD_IMAGE_BASE_NAME=registry.cn-hangzhou.aliyuncs.com/goodrain
|
||||
./release.sh all push
|
||||
|
@ -59,7 +59,7 @@ func ApplyOne(ctx context.Context, apply apply.Applicator, clientset kubernetes.
|
||||
}
|
||||
}
|
||||
// for custom component
|
||||
if len(app.GetManifests()) > 0 {
|
||||
if len(app.GetManifests()) > 0 && apply != nil {
|
||||
for _, manifest := range app.GetManifests() {
|
||||
if err := apply.Apply(ctx, manifest); err != nil {
|
||||
return fmt.Errorf("apply custom component manifest %s/%s failure %s", manifest.GetKind(), manifest.GetName(), err.Error())
|
||||
|
@ -481,7 +481,7 @@ func (a *appRuntimeStore) InitOneThirdPartService(service *model.TenantServices)
|
||||
return err
|
||||
}
|
||||
a.RegistAppService(appService)
|
||||
err = f.ApplyOne(a.clientset, appService)
|
||||
err = f.ApplyOne(context.Background(), nil, a.clientset, appService)
|
||||
if err != nil {
|
||||
logrus.Errorf("error applying rule: %v", err)
|
||||
return err
|
||||
|
@ -61,7 +61,7 @@ func (r *Reconciler) Reconcile(req ctrl.Request) (res reconcile.Result, retErr e
|
||||
defer cancel()
|
||||
defer func() {
|
||||
if retErr == nil {
|
||||
log.Infof("finished reconciling")
|
||||
log.Debugf("finished reconciling")
|
||||
} else {
|
||||
log.Errorf("Failed to reconcile %v", retErr)
|
||||
}
|
||||
@ -69,7 +69,7 @@ func (r *Reconciler) Reconcile(req ctrl.Request) (res reconcile.Result, retErr e
|
||||
|
||||
if err := r.Client.Get(ctx, req.NamespacedName, component); err != nil {
|
||||
if apierrors.IsNotFound(err) {
|
||||
log.Infof("thirdcomponent %s does not exist", req)
|
||||
log.Warningf("thirdcomponent %s does not exist", req)
|
||||
}
|
||||
return ctrl.Result{}, client.IgnoreNotFound(err)
|
||||
}
|
||||
@ -78,7 +78,7 @@ func (r *Reconciler) Reconcile(req ctrl.Request) (res reconcile.Result, retErr e
|
||||
r.discoverPool.RemoveDiscover(component)
|
||||
return ctrl.Result{}, nil
|
||||
}
|
||||
logrus.Infof("start to reconcile component %s/%s", component.Namespace, component.Name)
|
||||
logrus.Debugf("start to reconcile component %s/%s", component.Namespace, component.Name)
|
||||
discover, err := NewDiscover(component, r.restConfig)
|
||||
if err != nil {
|
||||
component.Status.Phase = v1alpha1.ComponentFailed
|
||||
|
Loading…
Reference in New Issue
Block a user