mirror of
https://github.com/harness/drone.git
synced 2025-05-12 23:20:10 +08:00
feat: [CDE-483]: add cleanup action (#2991)
* fix lint * fix logs * add cleanup action
This commit is contained in:
parent
622f6d232c
commit
e077918d6f
70
app/services/gitspace/action_cleanup.go
Normal file
70
app/services/gitspace/action_cleanup.go
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
// Copyright 2023 Harness, Inc.
|
||||||
|
//
|
||||||
|
// 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 gitspace
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/harness/gitness/types"
|
||||||
|
"github.com/harness/gitness/types/enum"
|
||||||
|
|
||||||
|
"github.com/rs/zerolog/log"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (c *Service) CleanupGitspace(ctx context.Context, config types.GitspaceConfig) error {
|
||||||
|
if config.GitspaceInstance.State == enum.GitSpaceInstanceStateCleaning &&
|
||||||
|
time.Since(time.UnixMilli(config.GitspaceInstance.Updated)).Milliseconds() <=
|
||||||
|
(gitspaceInstanceCleaningTimedOutMins*60*1000) {
|
||||||
|
log.Ctx(ctx).Warn().Msgf("gitspace cleaning is already pending for : %q",
|
||||||
|
config.GitspaceInstance.Identifier)
|
||||||
|
return fmt.Errorf("gitspace is already pending for : %q", config.GitspaceInstance.Identifier)
|
||||||
|
}
|
||||||
|
|
||||||
|
config.GitspaceInstance.State = enum.GitSpaceInstanceStateCleaning
|
||||||
|
|
||||||
|
err := c.UpdateInstance(ctx, config.GitspaceInstance)
|
||||||
|
if err != nil {
|
||||||
|
log.Ctx(ctx).Err(err).Msgf("failed to update instance %s before triggering cleanup",
|
||||||
|
config.GitspaceInstance.Identifier)
|
||||||
|
return fmt.Errorf("failed to update instance %s before triggering cleanup: %w",
|
||||||
|
config.GitspaceInstance.Identifier,
|
||||||
|
err,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
err = c.orchestrator.TriggerCleanupInstanceResources(ctx, config)
|
||||||
|
if err != nil {
|
||||||
|
log.Ctx(ctx).Err(err).Msgf("error during triggering cleanup for gitspace instance %s",
|
||||||
|
config.GitspaceInstance.Identifier)
|
||||||
|
|
||||||
|
config.GitspaceInstance.State = enum.GitspaceInstanceStateError
|
||||||
|
if updateErr := c.UpdateInstance(ctx, config.GitspaceInstance); updateErr != nil {
|
||||||
|
log.Ctx(ctx).Err(updateErr).Msgf("failed to update instance %s after error in triggering delete",
|
||||||
|
config.GitspaceInstance.Identifier)
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Errorf("failed to trigger cleanup for gitspace instance %s: %w",
|
||||||
|
config.GitspaceInstance.Identifier,
|
||||||
|
err,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Ctx(ctx).Debug().Msgf("successfully triggered cleanup for gitspace instance %s",
|
||||||
|
config.GitspaceInstance.Identifier)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
@ -25,14 +25,11 @@ import (
|
|||||||
"github.com/rs/zerolog/log"
|
"github.com/rs/zerolog/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
// gitspaceInstanceCleaningTimedOutMins is timeout for which a gitspace instance can be in cleaning state.
|
|
||||||
const gitspaceInstanceCleaningTimedOutMins = 15
|
|
||||||
|
|
||||||
func (c *Service) RemoveGitspace(ctx context.Context, config types.GitspaceConfig, canDeleteUserData bool) error {
|
func (c *Service) RemoveGitspace(ctx context.Context, config types.GitspaceConfig, canDeleteUserData bool) error {
|
||||||
if config.GitspaceInstance.State == enum.GitSpaceInstanceStateCleaning &&
|
if config.GitspaceInstance.State == enum.GitSpaceInstanceStateCleaning &&
|
||||||
time.Since(time.UnixMilli(config.GitspaceInstance.Updated)).Milliseconds() <=
|
time.Since(time.UnixMilli(config.GitspaceInstance.Updated)).Milliseconds() <=
|
||||||
(gitspaceInstanceCleaningTimedOutMins*60*1000) {
|
(gitspaceInstanceCleaningTimedOutMins*60*1000) {
|
||||||
log.Ctx(ctx).Warn().Msgf("gitspace start/stop is already pending for : %q",
|
log.Ctx(ctx).Warn().Msgf("gitspace cleaning is already pending for : %q",
|
||||||
config.GitspaceInstance.Identifier)
|
config.GitspaceInstance.Identifier)
|
||||||
return fmt.Errorf("gitspace is already pending for : %q", config.GitspaceInstance.Identifier)
|
return fmt.Errorf("gitspace is already pending for : %q", config.GitspaceInstance.Identifier)
|
||||||
}
|
}
|
||||||
@ -57,7 +54,7 @@ func (c *Service) RemoveGitspace(ctx context.Context, config types.GitspaceConfi
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := c.TriggerDelete(ctx, config, canDeleteUserData); err != nil {
|
if err := c.orchestrator.TriggerDeleteGitspace(ctx, config, canDeleteUserData); err != nil {
|
||||||
log.Ctx(ctx).Err(err).Msgf("error during triggering delete for gitspace instance %s",
|
log.Ctx(ctx).Err(err).Msgf("error during triggering delete for gitspace instance %s",
|
||||||
config.GitspaceInstance.Identifier)
|
config.GitspaceInstance.Identifier)
|
||||||
config.GitspaceInstance.State = enum.GitspaceInstanceStateError
|
config.GitspaceInstance.State = enum.GitspaceInstanceStateError
|
||||||
@ -77,11 +74,3 @@ func (c *Service) RemoveGitspace(ctx context.Context, config types.GitspaceConfi
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Service) TriggerDelete(
|
|
||||||
ctx context.Context,
|
|
||||||
config types.GitspaceConfig,
|
|
||||||
canDeleteUserData bool,
|
|
||||||
) error {
|
|
||||||
return c.orchestrator.TriggerDeleteGitspace(ctx, config, canDeleteUserData)
|
|
||||||
}
|
|
||||||
|
@ -34,6 +34,9 @@ const defaultPasswordRef = "harness_password"
|
|||||||
const defaultMachineUser = "harness"
|
const defaultMachineUser = "harness"
|
||||||
const AllowedUIDAlphabet = "abcdefghijklmnopqrstuvwxyz0123456789"
|
const AllowedUIDAlphabet = "abcdefghijklmnopqrstuvwxyz0123456789"
|
||||||
|
|
||||||
|
// gitspaceInstanceCleaningTimedOutMins is timeout for which a gitspace instance can be in cleaning state.
|
||||||
|
const gitspaceInstanceCleaningTimedOutMins = 15
|
||||||
|
|
||||||
func (c *Service) gitspaceBusyOperation(
|
func (c *Service) gitspaceBusyOperation(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
config *types.GitspaceConfig,
|
config *types.GitspaceConfig,
|
||||||
|
Loading…
Reference in New Issue
Block a user