mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
29 lines
1.0 KiB
Go
29 lines
1.0 KiB
Go
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package componentsworkspace
|
|
|
|
import (
|
|
"github.com/gitpod-io/gitpod/installer/pkg/common"
|
|
agentsmith "github.com/gitpod-io/gitpod/installer/pkg/components/agent-smith"
|
|
imagebuildermk3 "github.com/gitpod-io/gitpod/installer/pkg/components/image-builder-mk3"
|
|
registryfacade "github.com/gitpod-io/gitpod/installer/pkg/components/registry-facade"
|
|
"github.com/gitpod-io/gitpod/installer/pkg/components/workspace"
|
|
wsdaemon "github.com/gitpod-io/gitpod/installer/pkg/components/ws-daemon"
|
|
wsmanager "github.com/gitpod-io/gitpod/installer/pkg/components/ws-manager"
|
|
wsproxy "github.com/gitpod-io/gitpod/installer/pkg/components/ws-proxy"
|
|
)
|
|
|
|
var Objects = common.CompositeRenderFunc(
|
|
agentsmith.Objects,
|
|
registryfacade.Objects,
|
|
workspace.Objects,
|
|
wsdaemon.Objects,
|
|
wsmanager.Objects,
|
|
wsproxy.Objects,
|
|
imagebuildermk3.Objects,
|
|
)
|
|
|
|
var Helm = common.CompositeHelmFunc()
|