| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- Copyright 2026 LocoStack.
- 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 reconciler
- import (
- "context"
- "crypto/rand"
- "encoding/hex"
- "fmt"
- "github.com/LocoStack/loco-operator/api/v1alpha1"
- "k8s.io/apimachinery/pkg/runtime"
- "sigs.k8s.io/controller-runtime/pkg/client"
- )
- const (
- POSTGRES_DEFAULT_STORAGE_SIZE = "1Gi"
- POSTGRES_PASSWORD_SECRET_KEY = "password"
- )
- type PostgreSQLReconciler struct {
- *DefaultComponentReconciler
- client client.Client
- scheme *runtime.Scheme
- stack *v1alpha1.Stack
- component *v1alpha1.Component
- }
- func NewPostgreSQLReconciler(client client.Client, scheme *runtime.Scheme, stack *v1alpha1.Stack, component *v1alpha1.Component) *PostgreSQLReconciler {
- return &PostgreSQLReconciler{
- DefaultComponentReconciler: NewDefaultComponentReconciler(client, scheme, stack, component),
- client: client,
- scheme: scheme,
- stack: stack,
- component: component,
- }
- }
- func (r *PostgreSQLReconciler) ReconcileComponent(ctx context.Context, tmpl *v1alpha1.Template, variables map[string]string) ([]client.Object, error) {
- if err := r.ReconcileStorage(ctx, "postgresql", POSTGRES_DEFAULT_STORAGE_SIZE); err != nil {
- return nil, fmt.Errorf("reconciling postgresql storage: %w", err)
- }
- if err := r.ReconcileKey(ctx, "postgresql", POSTGRES_PASSWORD_SECRET_KEY, genrateKey); err != nil {
- return nil, fmt.Errorf("reconciling postgresql key: %w", err)
- }
- if _, err := r.DefaultComponentReconciler.ReconcileComponent(ctx, tmpl, variables); err != nil {
- return nil, err
- }
- return nil, nil
- }
- func genrateKey() (string, error) {
- b := make([]byte, 32)
- if _, err := rand.Read(b); err != nil {
- return "", err
- }
- return hex.EncodeToString(b), nil
- }
|