Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Deployment configuration and v1alpha2 version #388

Merged
merged 15 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .rhdh/bundle/manifests/rhdh-operator.csv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
alm-examples: |-
[
{
"apiVersion": "rhdh.redhat.com/v1alpha1",
"apiVersion": "rhdh.redhat.com/v1alpha2",
"kind": "Backstage",
"metadata": {
"name": "developer-hub"
Expand Down Expand Up @@ -57,6 +57,14 @@ spec:
kind: Backstage
name: backstages.rhdh.redhat.com
version: v1alpha1
- description: Backstage is the Schema for the Red Hat Developer Hub backstages API.
It comes with pre-built plug-ins, configuration settings, and deployment mechanisms,
which can help streamline the process of setting up a self-managed internal
developer portal for adopters who are just starting out.
displayName: Red Hat Developer Hub
kind: Backstage
name: backstages.rhdh.redhat.com
version: v1alpha2
gazarenkov marked this conversation as resolved.
Show resolved Hide resolved
description: |
Red Hat Developer Hub is an enterprise-grade platform for building developer portals, containing a supported and opinionated framework. By implementing a unified and open platform designed to maximize developer skills, ease onboarding, and increase development productivity, focus can be centered on what really matters: writing great code. Red Hat Developer Hub also offers Software Templates to simplify the development process, which can reduce friction and frustration for development teams, boosting their productivity and increasing an organization's competitive advantage.

Expand Down
4 changes: 2 additions & 2 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ resources:
controller: true
domain: rhdh.redhat.com
kind: Backstage
path: redhat-developer/red-hat-developer-hub-operator/api/v1alpha1
version: v1alpha1
path: redhat-developer/red-hat-developer-hub-operator/api/v1alpha2
version: v1alpha2
version: "3"
1 change: 1 addition & 0 deletions api/v1alpha1/backstage_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ type BackstageStatus struct {

//+kubebuilder:object:root=true
//+kubebuilder:subresource:status
//+kubebuilder:deprecatedversion:warning="Since 1.3.0 spec.application.image, spec.application.replicas, spec.application.imagePullSecrets are deprecated in favor of corresponding spec.deployment fields"

// Backstage is the Schema for the backstages API
type Backstage struct {
Expand Down
310 changes: 310 additions & 0 deletions api/v1alpha2/backstage_types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,310 @@
//
// Copyright (c) 2023 Red Hat, 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 v1alpha2

import (
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/ptr"
)

type BackstageConditionReason string

type BackstageConditionType string

const (
BackstageConditionTypeDeployed BackstageConditionType = "Deployed"

BackstageConditionReasonDeployed BackstageConditionReason = "Deployed"
BackstageConditionReasonFailed BackstageConditionReason = "DeployFailed"
BackstageConditionReasonInProgress BackstageConditionReason = "DeployInProgress"
)

// BackstageSpec defines the desired state of Backstage
type BackstageSpec struct {
// Configuration for Backstage. Optional.
Application *Application `json:"application,omitempty"`

// Raw Runtime RuntimeObjects configuration. For Advanced scenarios.
RawRuntimeConfig *RuntimeConfig `json:"rawRuntimeConfig,omitempty"`

// Configuration for database access. Optional.
Database *Database `json:"database,omitempty"`

// Valid fragment of Deployment to be merged with default/raw configuration.
// Set the Deployment's metadata and|or spec fields you want to override or add.
// Optional.
// +kubebuilder:pruning:PreserveUnknownFields
Deployment *BackstageDeployment `json:"deployment,omitempty"`
}

type BackstageDeployment struct {
// Valid fragment of Deployment to be merged with default/raw configuration.
// Set the Deployment's metadata and|or spec fields you want to override or add.
// Optional.
// +kubebuilder:pruning:PreserveUnknownFields
Patch *apiextensionsv1.JSON `json:"patch,omitempty"`
}

type RuntimeConfig struct {
// Name of ConfigMap containing Backstage runtime objects configuration
BackstageConfigName string `json:"backstageConfig,omitempty"`
// Name of ConfigMap containing LocalDb (PostgreSQL) runtime objects configuration
LocalDbConfigName string `json:"localDbConfig,omitempty"`
}

type Database struct {
// Control the creation of a local PostgreSQL DB. Set to false if using for example an external Database for Backstage.
// +optional
//+kubebuilder:default=true
EnableLocalDb *bool `json:"enableLocalDb,omitempty"`

// Name of the secret for database authentication. Optional.
// For a local database deployment (EnableLocalDb=true), a secret will be auto generated if it does not exist.
// The secret shall include information used for the database access.
// An example for PostgreSQL DB access:
// "POSTGRES_PASSWORD": "rl4s3Fh4ng3M4"
// "POSTGRES_PORT": "5432"
// "POSTGRES_USER": "postgres"
// "POSTGRESQL_ADMIN_PASSWORD": "rl4s3Fh4ng3M4"
// "POSTGRES_HOST": "backstage-psql-bs1" # For local database, set to "backstage-psql-<CR name>".
AuthSecretName string `json:"authSecretName,omitempty"`
}

type Application struct {
// References to existing app-configs ConfigMap objects, that will be mounted as files in the specified mount path.
// Each element can be a reference to any ConfigMap or Secret,
// and will be mounted inside the main application container under a specified mount directory.
// Additionally, each file will be passed as a `--config /mount/path/to/configmap/key` to the
// main container args in the order of the entries defined in the AppConfigs list.
// But bear in mind that for a single ConfigMap element containing several filenames,
// the order in which those files will be appended to the main container args cannot be guaranteed.
// So if you want to pass multiple app-config files, it is recommended to pass one ConfigMap per app-config file.
// +optional
AppConfig *AppConfig `json:"appConfig,omitempty"`

// Reference to an existing ConfigMap for Dynamic Plugins.
// A new one will be generated with the default config if not set.
// The ConfigMap object must have an existing key named: 'dynamic-plugins.yaml'.
// +optional
DynamicPluginsConfigMapName string `json:"dynamicPluginsConfigMapName,omitempty"`

// References to existing Config objects to use as extra config files.
// They will be mounted as files in the specified mount path.
// Each element can be a reference to any ConfigMap or Secret.
// +optional
ExtraFiles *ExtraFiles `json:"extraFiles,omitempty"`

// Extra environment variables
// +optional
ExtraEnvs *ExtraEnvs `json:"extraEnvs,omitempty"`

// Number of desired replicas to set in the Backstage Deployment.
// Defaults to 1.
// +optional
//+kubebuilder:default=1
Replicas *int32 `json:"replicas,omitempty"`
gazarenkov marked this conversation as resolved.
Show resolved Hide resolved

// Custom image to use in all containers (including Init Containers).
// It is your responsibility to make sure the image is from trusted sources and has been validated for security compliance
// +optional
Image *string `json:"image,omitempty"`
gazarenkov marked this conversation as resolved.
Show resolved Hide resolved

// Image Pull Secrets to use in all containers (including Init Containers)
// +optional
ImagePullSecrets []string `json:"imagePullSecrets,omitempty"`
gazarenkov marked this conversation as resolved.
Show resolved Hide resolved

// Route configuration. Used for OpenShift only.
Route *Route `json:"route,omitempty"`
}

type AppConfig struct {
// Mount path for all app-config files listed in the ConfigMapRefs field
// +optional
// +kubebuilder:default=/opt/app-root/src
MountPath string `json:"mountPath,omitempty"`

// List of ConfigMaps storing the app-config files. Will be mounted as files under the MountPath specified.
// For each item in this array, if a key is not specified, it means that all keys in the ConfigMap will be mounted as files.
// Otherwise, only the specified key will be mounted as a file.
// Bear in mind not to put sensitive data in those ConfigMaps. Instead, your app-config content can reference
// environment variables (which you can set with the ExtraEnvs field) and/or include extra files (see the ExtraFiles field).
// More details on https://backstage.io/docs/conf/writing/.
// +optional
ConfigMaps []ObjectKeyRef `json:"configMaps,omitempty"`
}

type ExtraFiles struct {
// Mount path for all extra configuration files listed in the Items field
// +optional
// +kubebuilder:default=/opt/app-root/src
MountPath string `json:"mountPath,omitempty"`

// List of references to ConfigMaps objects mounted as extra files under the MountPath specified.
// For each item in this array, if a key is not specified, it means that all keys in the ConfigMap will be mounted as files.
// Otherwise, only the specified key will be mounted as a file.
// +optional
ConfigMaps []ObjectKeyRef `json:"configMaps,omitempty"`

// List of references to Secrets objects mounted as extra files under the MountPath specified.
// For each item in this array, a key must be specified that will be mounted as a file.
// +optional
Secrets []ObjectKeyRef `json:"secrets,omitempty"`
}

type ExtraEnvs struct {
// List of references to ConfigMaps objects to inject as additional environment variables.
// For each item in this array, if a key is not specified, it means that all keys in the ConfigMap will be injected as additional environment variables.
// Otherwise, only the specified key will be injected as an additional environment variable.
// +optional
ConfigMaps []ObjectKeyRef `json:"configMaps,omitempty"`

// List of references to Secrets objects to inject as additional environment variables.
// For each item in this array, if a key is not specified, it means that all keys in the Secret will be injected as additional environment variables.
// Otherwise, only the specified key will be injected as environment variable.
// +optional
Secrets []ObjectKeyRef `json:"secrets,omitempty"`

// List of name and value pairs to add as environment variables.
// +optional
Envs []Env `json:"envs,omitempty"`
}

type ObjectKeyRef struct {
// Name of the object
// We support only ConfigMaps and Secrets.
//+kubebuilder:validation:Required
Name string `json:"name"`

// Key in the object
// +optional
Key string `json:"key,omitempty"`
}

type Env struct {
// Name of the environment variable
//+kubebuilder:validation:Required
Name string `json:"name"`

// Value of the environment variable
//+kubebuilder:validation:Required
Value string `json:"value"`
}

// BackstageStatus defines the observed state of Backstage
type BackstageStatus struct {
// Conditions is the list of conditions describing the state of the runtime
// +optional
Conditions []metav1.Condition `json:"conditions,omitempty"`
}

//+kubebuilder:object:root=true
//+kubebuilder:subresource:status
//+kubebuilder:storageversion

// Backstage is the Schema for the backstages API
type Backstage struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`

Spec BackstageSpec `json:"spec,omitempty"`
Status BackstageStatus `json:"status,omitempty"`
}

//+kubebuilder:object:root=true

// BackstageList contains a list of Backstage
type BackstageList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Backstage `json:"items"`
}

// Route specifies configuration parameters for OpenShift Route for Backstage.
// Only a secured edge route is supported for Backstage.
type Route struct {
// Control the creation of a Route on OpenShift.
// +optional
//+kubebuilder:default=true
Enabled *bool `json:"enabled,omitempty"`

// Host is an alias/DNS that points to the service. Optional.
// Ignored if Enabled is false.
// If not specified a route name will typically be automatically
// chosen. Must follow DNS952 subdomain conventions.
// +optional
// +kubebuilder:validation:MaxLength=253
// +kubebuilder:validation:Pattern=`^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])(\.([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]{0,61}[a-zA-Z0-9]))*$`
Host string `json:"host,omitempty" protobuf:"bytes,1,opt,name=host"`

// Subdomain is a DNS subdomain that is requested within the ingress controller's
// domain (as a subdomain).
// Ignored if Enabled is false.
// Example: subdomain `frontend` automatically receives the router subdomain
// `apps.mycluster.com` to have a full hostname `frontend.apps.mycluster.com`.
// +optional
// +kubebuilder:validation:MaxLength=253
// +kubebuilder:validation:Pattern=`^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])(\.([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]{0,61}[a-zA-Z0-9]))*$`
Subdomain string `json:"subdomain,omitempty"`

// The tls field provides the ability to configure certificates for the route.
// Ignored if Enabled is false.
// +optional
TLS *TLS `json:"tls,omitempty"`
}

type TLS struct {
// certificate provides certificate contents. This should be a single serving certificate, not a certificate
// chain. Do not include a CA certificate.
Certificate string `json:"certificate,omitempty"`

// ExternalCertificateSecretName provides certificate contents as a secret reference.
// This should be a single serving certificate, not a certificate
// chain. Do not include a CA certificate. The secret referenced should
// be present in the same namespace as that of the Route.
// Forbidden when `certificate` is set.
// +optional
ExternalCertificateSecretName string `json:"externalCertificateSecretName,omitempty"`

// key provides key file contents
Key string `json:"key,omitempty"`

// caCertificate provides the cert authority certificate contents
CACertificate string `json:"caCertificate,omitempty"`
}

func init() {
SchemeBuilder.Register(&Backstage{}, &BackstageList{})
}

// IsLocalDbEnabled returns true if Local database is configured and enabled
func (s *BackstageSpec) IsLocalDbEnabled() bool {
if s.Database == nil {
return true
}
return ptr.Deref(s.Database.EnableLocalDb, true)
}

// IsRouteEnabled returns value of Application.Route.Enabled if defined or true by default
func (s *BackstageSpec) IsRouteEnabled() bool {
if s.Application != nil && s.Application.Route != nil {
return ptr.Deref(s.Application.Route.Enabled, true)
}
return true
}

func (s *BackstageSpec) IsAuthSecretSpecified() bool {
return s.Database != nil && s.Database.AuthSecretName != ""
}
36 changes: 36 additions & 0 deletions api/v1alpha2/groupversion_info.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
Copyright 2023 Red Hat 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 v1alpha2 contains API Schema definitions for the v1alpha2 API group
// +kubebuilder:object:generate=true
// +groupName=rhdh.redhat.com
package v1alpha2

import (
"k8s.io/apimachinery/pkg/runtime/schema"
"sigs.k8s.io/controller-runtime/pkg/scheme"
)

var (
// GroupVersion is group version used to register these objects
GroupVersion = schema.GroupVersion{Group: "rhdh.redhat.com", Version: "v1alpha2"}

// SchemeBuilder is used to add go types to the GroupVersionKind scheme
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}

// AddToScheme adds the types in this group-version to the given scheme.
AddToScheme = SchemeBuilder.AddToScheme
)
Loading