mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-01 11:18:08 +08:00
150 lines
4.5 KiB
Go
150 lines
4.5 KiB
Go
// RAINBOND, Application Management Platform
|
|
// Copyright (C) 2014-2017 Goodrain Co., Ltd.
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
|
// must be obtained first.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package controller
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/goodrain/rainbond/event"
|
|
"github.com/goodrain/rainbond/worker/appm/store"
|
|
v1 "github.com/goodrain/rainbond/worker/appm/types/v1"
|
|
corev1 "k8s.io/api/core/v1"
|
|
)
|
|
|
|
//ErrWaitTimeOut wait time out
|
|
var ErrWaitTimeOut = fmt.Errorf("Wait time out")
|
|
|
|
//ErrWaitCancel wait cancel
|
|
var ErrWaitCancel = fmt.Errorf("Wait cancel")
|
|
|
|
//WaitReady wait ready
|
|
func WaitReady(store store.Storer, a *v1.AppService, timeout time.Duration, logger event.Logger, cancel chan struct{}) error {
|
|
if timeout < 40 {
|
|
timeout = time.Second * 40
|
|
}
|
|
logger.Info(fmt.Sprintf("waiting app ready timeout %ds", int(timeout.Seconds())), map[string]string{"step": "appruntime", "status": "running"})
|
|
logrus.Debugf("waiting app ready timeout %ds", int(timeout.Seconds()))
|
|
ticker := time.NewTicker(timeout / 10)
|
|
timer := time.NewTimer(timeout)
|
|
defer ticker.Stop()
|
|
var i int
|
|
for {
|
|
if i > 2 {
|
|
a = store.UpdateGetAppService(a.ServiceID)
|
|
}
|
|
if a.Ready() {
|
|
return nil
|
|
}
|
|
printLogger(a, logger)
|
|
select {
|
|
case <-cancel:
|
|
return ErrWaitCancel
|
|
case <-timer.C:
|
|
//if service status is waitting, the event is not timeout
|
|
// if a.IsWaitting() {
|
|
// timer.Reset(timeout)
|
|
// }
|
|
return ErrWaitTimeOut
|
|
case <-ticker.C:
|
|
}
|
|
i++
|
|
}
|
|
}
|
|
|
|
//WaitStop wait service stop complete
|
|
func WaitStop(store store.Storer, a *v1.AppService, timeout time.Duration, logger event.Logger, cancel chan struct{}) error {
|
|
if a == nil {
|
|
return nil
|
|
}
|
|
if timeout < 40 {
|
|
timeout = time.Second * 40
|
|
}
|
|
logger.Info(fmt.Sprintf("waiting app closed timeout %ds", int(timeout.Seconds())), map[string]string{"step": "appruntime", "status": "running"})
|
|
logrus.Debugf("waiting app ready timeout %ds", int(timeout.Seconds()))
|
|
ticker := time.NewTicker(timeout / 10)
|
|
timer := time.NewTimer(timeout)
|
|
defer ticker.Stop()
|
|
var i int
|
|
for {
|
|
i++
|
|
if i > 2 {
|
|
a = store.UpdateGetAppService(a.ServiceID)
|
|
}
|
|
if a.IsClosed() {
|
|
return nil
|
|
}
|
|
printLogger(a, logger)
|
|
select {
|
|
case <-cancel:
|
|
return ErrWaitCancel
|
|
case <-timer.C:
|
|
return ErrWaitTimeOut
|
|
case <-ticker.C:
|
|
}
|
|
}
|
|
}
|
|
|
|
//WaitUpgradeReady wait upgrade success
|
|
func WaitUpgradeReady(store store.Storer, a *v1.AppService, timeout time.Duration, logger event.Logger, cancel chan struct{}) error {
|
|
if a == nil {
|
|
return nil
|
|
}
|
|
if timeout < 40 {
|
|
timeout = time.Second * 40
|
|
}
|
|
logger.Info(fmt.Sprintf("waiting app upgrade complete timeout %ds", int(timeout.Seconds())), map[string]string{"step": "appruntime", "status": "running"})
|
|
logrus.Debugf("waiting app upgrade complete timeout %ds", int(timeout.Seconds()))
|
|
ticker := time.NewTicker(timeout / 10)
|
|
timer := time.NewTimer(timeout)
|
|
defer ticker.Stop()
|
|
for {
|
|
if a.UpgradeComlete() {
|
|
return nil
|
|
}
|
|
printLogger(a, logger)
|
|
select {
|
|
case <-cancel:
|
|
return ErrWaitCancel
|
|
case <-timer.C:
|
|
return ErrWaitTimeOut
|
|
case <-ticker.C:
|
|
}
|
|
}
|
|
}
|
|
func printLogger(a *v1.AppService, logger event.Logger) {
|
|
var ready int32
|
|
if a.GetStatefulSet() != nil {
|
|
ready = a.GetStatefulSet().Status.ReadyReplicas
|
|
}
|
|
if a.GetDeployment() != nil {
|
|
ready = a.GetDeployment().Status.ReadyReplicas
|
|
}
|
|
logger.Info(fmt.Sprintf("current instance(count:%d ready:%d notready:%d)", len(a.GetPods()), ready, int32(len(a.GetPods()))-ready), map[string]string{"step": "appruntime", "status": "running"})
|
|
pods := a.GetPods()
|
|
for _, pod := range pods {
|
|
for _, con := range pod.Status.Conditions {
|
|
if con.Status == corev1.ConditionFalse {
|
|
logger.Debug(fmt.Sprintf("instance %s %s status is %s: %s", pod.Name, con.Type, con.Status, con.Message), map[string]string{"step": "appruntime", "status": "running"})
|
|
}
|
|
}
|
|
}
|
|
}
|