Skip to content
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
2 changes: 1 addition & 1 deletion api/v1beta1/openstacklightspeed_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ type OpenStackLightspeedStatus struct {
// +operator-sdk:csv:customresourcedefinitions:resources={{ServiceAccount,v1,lightspeed-app-server}}
// +operator-sdk:csv:customresourcedefinitions:resources={{NetworkPolicy,v1,lightspeed-app-server}}
// +operator-sdk:csv:customresourcedefinitions:resources={{NetworkPolicy,v1,lightspeed-postgres-server}}
// +operator-sdk:csv:customresourcedefinitions:resources={{PersistentVolumeClaim,v1,openstack-lightspeed-data}}
// +operator-sdk:csv:customresourcedefinitions:resources={{PersistentVolumeClaim,v1,openstack-lightspeed-database}}
// +operator-sdk:csv:customresourcedefinitions:resources={{ClusterRole,v1,lightspeed-app-server-sar-role}}
// +operator-sdk:csv:customresourcedefinitions:resources={{ClusterRoleBinding,v1,lightspeed-app-server-sar-role-binding}}
// +operator-sdk:csv:customresourcedefinitions:resources={{Subscription,v1alpha1}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ metadata:
]
capabilities: Basic Install
categories: AI/Machine Learning
createdAt: "2026-05-27T08:37:10Z"
createdAt: "2026-05-27T13:26:52Z"
description: AI-powered virtual assistant for Red Hat OpenStack Services on OpenShift
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
Expand Down Expand Up @@ -114,7 +114,7 @@ spec:
name: metrics-reader-token
version: v1
- kind: PersistentVolumeClaim
name: openstack-lightspeed-data
name: openstack-lightspeed-database
version: v1
specDescriptors:
- description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ spec:
name: metrics-reader-token
version: v1
- kind: PersistentVolumeClaim
name: openstack-lightspeed-data
name: openstack-lightspeed-database
version: v1
specDescriptors:
- description: |-
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const (
PostgresConfigVolumeMountPath = "/usr/share/pgsql/postgresql.conf.sample"
PostgresDataVolume = "postgres-data"
PostgresDataVolumeMountPath = "/var/lib/pgsql"
PostgresDataPVCName = "openstack-lightspeed-data"
PostgresDataPVCName = "openstack-lightspeed-database"
PostgresDataPVCDefaultSize = "1Gi"
PostgresVarRunVolumeName = "lightspeed-postgres-var-run"
PostgresVarRunVolumeMountPath = "/var/run/postgresql"
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/postgres_reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ func reconcilePostgresPVC(h *common_helper.Helper, ctx context.Context, instance
return fmt.Errorf("%w: requested size %s but existing PVC has %s",
ErrPostgresPVCSizeMismatch, requestedQty.String(), existingQty.String())
}
h.GetLogger().Info("Postgres PVC already exists with matching size", "name", pvc.Name)
h.GetLogger().Info("Reusing the existing PostgreSQL PVC with a matching size", "name", pvc.Name)
return nil
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: openstack-lightspeed-data
name: openstack-lightspeed-database
namespace: openstack-lightspeed
spec:
accessModes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ delete:
kind: OpenStackLightspeed
name: openstack-lightspeed
namespace: openstack-lightspeed
- apiVersion: v1
kind: PersistentVolumeClaim
name: openstack-lightspeed-database
namespace: openstack-lightspeed

Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ kind: TestStep
delete:
- apiVersion: v1
kind: PersistentVolumeClaim
name: openstack-lightspeed-data
name: openstack-lightspeed-database
namespace: openstack-lightspeed
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: openstack-lightspeed-data
name: openstack-lightspeed-database
namespace: openstack-lightspeed
spec:
accessModes:
Expand Down
Loading