mirror of
https://github.com/harness/drone.git
synced 2025-05-05 14:12:36 +08:00

* feat: [CDE:220]: Adding util method to get working dir from repo name. * feat: [CDE:220]: Addressing review comments. * feat: [CDE-220]: Adding gitspace instance identifier to infra provisioning. Adding checks to ensure infra status is always same as required. Adding infra status type error enum. Adding util method to derive gitspace container name. Cleaning parameters to use values instead of references. Refactoring fields for infra struct to make them more explicit. Adding config to read agent port and pass it on to infra provider for provisioning and finding.
57 lines
2.2 KiB
Go
57 lines
2.2 KiB
Go
// 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 orchestrator
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/harness/gitness/types"
|
|
"github.com/harness/gitness/types/enum"
|
|
)
|
|
|
|
type Orchestrator interface {
|
|
// TriggerStartGitspace fetches the infra resources configured for the gitspace and triggers the infra provisioning.
|
|
TriggerStartGitspace(ctx context.Context, gitspaceConfig types.GitspaceConfig) (enum.GitspaceInstanceStateType, error)
|
|
|
|
// ResumeStartGitspace saves the provisioned infra, resolves the code repo details & creates the Gitspace container.
|
|
ResumeStartGitspace(
|
|
ctx context.Context,
|
|
gitspaceConfig types.GitspaceConfig,
|
|
provisionedInfra types.Infrastructure,
|
|
) (types.GitspaceInstance, error)
|
|
|
|
// TriggerStopGitspace stops the Gitspace container and triggers infra deprovisioning to deprovision
|
|
// all the infra resources which are not required to restart the Gitspace.
|
|
TriggerStopGitspace(ctx context.Context, gitspaceConfig types.GitspaceConfig) (enum.GitspaceInstanceStateType, error)
|
|
|
|
// ResumeStopGitspace saves the deprovisioned infra details.
|
|
ResumeStopGitspace(
|
|
ctx context.Context,
|
|
gitspaceConfig types.GitspaceConfig,
|
|
stoppedInfra types.Infrastructure,
|
|
) (enum.GitspaceInstanceStateType, error)
|
|
|
|
// TriggerDeleteGitspace removes the Gitspace container and triggers infra deprovisioning to deprovision
|
|
// all the infra resources.
|
|
TriggerDeleteGitspace(ctx context.Context, gitspaceConfig types.GitspaceConfig) (enum.GitspaceInstanceStateType, error)
|
|
|
|
// ResumeDeleteGitspace saves the deprovisioned infra details.
|
|
ResumeDeleteGitspace(
|
|
ctx context.Context,
|
|
gitspaceConfig types.GitspaceConfig,
|
|
deprovisionedInfra types.Infrastructure,
|
|
) (enum.GitspaceInstanceStateType, error)
|
|
}
|