Skip to content

Commit

Permalink
Bump bundle to version '0.25.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mmontes11 committed Feb 10, 2024
1 parent 14eb0c7 commit 0b46e3d
Show file tree
Hide file tree
Showing 14 changed files with 29,583 additions and 3,107 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION ?= 0.24.0
VERSION ?= 0.25.0

CHANNELS ?= alpha
BUNDLE_CHANNELS := --channels=$(CHANNELS)
Expand Down Expand Up @@ -259,7 +259,7 @@ $(LOCALBIN):

.PHONY: kind
KIND = ./bin/kind
KIND_VERSION ?= 0.24.0
KIND_VERSION ?= 0.25.0
kind: ## Download kind locally if necessary.
ifeq (,$(wildcard $(KIND)))
ifeq (,$(shell which kind 2>/dev/null))
Expand Down
109 changes: 104 additions & 5 deletions bundle/manifests/mariadb-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,102 @@ metadata:
}
}
},
{
"apiVersion": "mariadb.mmontes.io/v1alpha1",
"kind": "MaxScale",
"metadata": {
"name": "maxscale-galera"
},
"spec": {
"admin": {
"guiEnabled": true,
"port": 8989
},
"auth": {
"adminPasswordSecretKeyRef": {
"key": "password",
"name": "maxscale"
},
"adminUsername": "mariadb-operator",
"generate": true
},
"config": {
"sync": {
"database": "mysql",
"interval": "5s",
"timeout": "10s"
}
},
"connection": {
"port": 3306,
"secretName": "mxs-galera-conn"
},
"kubernetesService": {
"annotations": {
"metallb.universe.tf/loadBalancerIPs": "172.18.0.224"
},
"type": "LoadBalancer"
},
"mariaDbRef": {
"name": "mariadb-galera"
},
"monitor": {
"cooperativeMonitoring": "majority_of_all",
"interval": "2s",
"params": {
"available_when_donor": "false",
"disable_master_failback": "false",
"disable_master_role_setting": "false"
}
},
"replicas": 3,
"requeueInterval": "10s",
"services": [
{
"listener": {
"params": {
"connection_metadata": "tx_isolation=auto"
},
"port": 3306,
"protocol": "MariaDBProtocol"
},
"name": "rw-router",
"params": {
"master_accept_reads": "true",
"max_replication_lag": "3s",
"max_slave_connections": "255",
"transaction_replay": "true",
"transaction_replay_attempts": "10",
"transaction_replay_timeout": "5s"
},
"router": "readwritesplit"
},
{
"listener": {
"port": 3307
},
"name": "rconn-master-router",
"params": {
"master_accept_reads": "true",
"max_replication_lag": "3s",
"router_options": "master"
},
"router": "readconnroute"
},
{
"listener": {
"port": 3308
},
"name": "rconn-slave-router",
"params": {
"max_replication_lag": "3s",
"router_options": "slave"
},
"router": "readconnroute"
}
]
}
},
{
"apiVersion": "mariadb.mmontes.io/v1alpha1",
"kind": "Restore",
Expand Down Expand Up @@ -394,14 +490,14 @@ metadata:
]
capabilities: Deep Insights
categories: Database
containerImage: ghcr.io/mariadb-operator/mariadb-operator-helm:0.24.0
createdAt: "2024-02-09T17:54:53Z"
containerImage: ghcr.io/mariadb-operator/mariadb-operator-helm:0.25.0
createdAt: "2024-02-10T11:00:53Z"
description: Run and operate MariaDB in a cloud native way
operators.operatorframework.io/builder: operator-sdk-v1.26.0
operators.operatorframework.io/project_layout: helm.sdk.operatorframework.io/v1
repository: https://github.com/mariadb-operator/mariadb-operator
support: mariadb-operator
name: mariadb-operator.v0.24.0
name: mariadb-operator.v0.25.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -437,6 +533,9 @@ spec:
kind: MariaDB
name: mariadbs.mariadb.mmontes.io
version: v1alpha1
- kind: MaxScale
name: maxscales.mariadb.mmontes.io
version: v1alpha1
- description: Restores a backup
displayName: Restore
kind: Restore
Expand Down Expand Up @@ -639,7 +738,7 @@ spec:
- args:
- --leader-elect
- --leader-election-id=helm-operator
image: ghcr.io/mariadb-operator/mariadb-operator-helm:0.24.0
image: ghcr.io/mariadb-operator/mariadb-operator-helm:0.25.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -731,4 +830,4 @@ spec:
provider:
name: mariadb-operator
url: https://github.com/mariadb-operator/mariadb-operator
version: 0.24.0
version: 0.25.0
Loading

0 comments on commit 0b46e3d

Please sign in to comment.