Skip to content

Commit e092590

Browse files
committed
Added ExternalMariaDB
1 parent 0fd63c0 commit e092590

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

bundle/manifests/mariadb-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ metadata:
592592
capabilities: Deep Insights
593593
categories: Database
594594
containerImage: ghcr.io/mariadb-operator/mariadb-operator-helm:25.8.3
595-
createdAt: "2025-08-08T12:14:12Z"
595+
createdAt: "2025-09-16T17:34:47Z"
596596
description: Run and operate MariaDB in a cloud native way
597597
features.operators.openshift.io/disconnected: "false"
598598
features.operators.openshift.io/fips-compliant: "false"

config/manifests/bases/mariadb-operator.clusterserviceversion.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ spec:
7777
kind: PhysicalBackup
7878
name: physicalbackups.k8s.mariadb.com
7979
version: v1alpha1
80+
- description: Configures an external MariaDB resources
81+
displayName: ExternalMariaDB
82+
kind: ExternalMariaDB
83+
name: externalmariadbs.k8s.mariadb.com
84+
version: v1alpha1
8085
description: |
8186
Install [`mariadb-operator`](https://github.com/mariadb-operator/mariadb-operator) via [OLM](https://olm.operatorframework.io/) using the [helm chart](https://artifacthub.io/packages/helm/mariadb-operator/mariadb-operator).
8287
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
apiVersion: k8s.mariadb.com/v1alpha1
2+
kind: ExternalMariaDB
3+
metadata:
4+
name: external-mariadb
5+
spec:
6+
host: mariadb.default.svc.cluster.local
7+
port: 3306
8+
username: root
9+
passwordSecretKeyRef:
10+
name: mariadb
11+
key: password
12+
connection:
13+
secretName: external-mariadb
14+
healthCheck:
15+
interval: 5s

config/samples/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ resources:
33
- backup.yaml
44
- connection.yaml
55
- database.yaml
6+
- external_mariadb.yaml
67
- grant.yaml
78
- mariadb.yaml
89
- mariadboperator.yaml

0 commit comments

Comments
 (0)