2023-08-25 22:06:51 +02:00

23 lines
551 B
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 public_api_server
import (
"github.com/gitpod-io/gitpod/installer/pkg/common"
"k8s.io/apimachinery/pkg/runtime"
)
func Objects(ctx *common.RenderContext) ([]runtime.Object, error) {
return common.CompositeRenderFunc(
configmap,
deployment,
rolebinding,
pdb,
common.DefaultServiceAccount(Component),
service,
networkpolicy,
)(ctx)
}