2022-12-08 13:05:19 -03:00

40 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 toxiproxy
import (
"github.com/gitpod-io/gitpod/installer/pkg/common"
"github.com/gitpod-io/gitpod/installer/pkg/config/v1/experimental"
"k8s.io/apimachinery/pkg/runtime"
)
func Objects(ctx *common.RenderContext) ([]runtime.Object, error) {
cfg := getExperimentalWebAppConfig(ctx)
if cfg == nil || !cfg.SlowDatabase {
return nil, nil
}
return common.CompositeRenderFunc(
deployment,
service,
configmap,
common.DefaultServiceAccount(Component),
)(ctx)
}
func getExperimentalWebAppConfig(ctx *common.RenderContext) *experimental.WebAppConfig {
var experimentalCfg *experimental.Config
_ = ctx.WithExperimental(func(ucfg *experimental.Config) error {
experimentalCfg = ucfg
return nil
})
if experimentalCfg == nil || experimentalCfg.WebApp == nil {
return nil
}
return experimentalCfg.WebApp
}