Skip to content

Commit

Permalink
Bump bundle to version '0.20.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mmontes11 committed Sep 3, 2023
1 parent 3fcd34f commit 9af9ffb
Show file tree
Hide file tree
Showing 13 changed files with 2,356 additions and 222 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION ?= 0.19.0
VERSION ?= 0.20.0

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

.PHONY: kind
KIND = ./bin/kind
KIND_VERSION ?= 0.19.0
KIND_VERSION ?= 0.20.0
kind: ## Download kind locally if necessary.
ifeq (,$(wildcard $(KIND)))
ifeq (,$(shell which kind 2>/dev/null))
Expand Down
8 changes: 4 additions & 4 deletions bundle/manifests/mariadb-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,12 @@ metadata:
]
capabilities: Deep Insights
categories: Database
containerImage: ghcr.io/mariadb-operator/mariadb-operator-helm:0.19.0
containerImage: ghcr.io/mariadb-operator/mariadb-operator-helm:0.20.0
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
name: mariadb-operator.v0.19.0
name: mariadb-operator.v0.20.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -493,7 +493,7 @@ spec:
- args:
- --leader-elect
- --leader-election-id=helm-operator
image: ghcr.io/mariadb-operator/mariadb-operator-helm:0.19.0
image: ghcr.io/mariadb-operator/mariadb-operator-helm:0.20.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -588,4 +588,4 @@ spec:
provider:
name: mariadb-operator
url: https://github.com/mariadb-operator/mariadb-operator
version: 0.19.0
version: 0.20.0
32 changes: 30 additions & 2 deletions bundle/manifests/mariadb.mmontes.io_backups.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -887,9 +887,37 @@ spec:
type: integer
mariaDbRef:
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
description: 'If referring to a piece of an object instead of
an entire object, this string should contain a valid JSON/Go
field access statement, such as desiredState.manifest.containers[2].
For example, if the object reference is to a container within
a pod, this would take on a value like: "spec.containers{name}"
(where "name" refers to the name of the container that triggered
the event) or if no container name is specified "spec.containers[2]"
(container with index 2 in this pod). This syntax is chosen
only to have some well-defined way of referencing a part of
an object. TODO: this design is not final and this field is
subject to change in the future.'
type: string
kind:
description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?'
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
type: string
namespace:
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
type: string
resourceVersion:
description: 'Specific resourceVersion to which this reference
is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
type: string
uid:
description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
type: string
waitForIt:
default: true
Expand Down
34 changes: 32 additions & 2 deletions bundle/manifests/mariadb.mmontes.io_connections.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,37 @@ spec:
type: object
mariaDbRef:
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
description: 'If referring to a piece of an object instead of
an entire object, this string should contain a valid JSON/Go
field access statement, such as desiredState.manifest.containers[2].
For example, if the object reference is to a container within
a pod, this would take on a value like: "spec.containers{name}"
(where "name" refers to the name of the container that triggered
the event) or if no container name is specified "spec.containers[2]"
(container with index 2 in this pod). This syntax is chosen
only to have some well-defined way of referencing a part of
an object. TODO: this design is not final and this field is
subject to change in the future.'
type: string
kind:
description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?'
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
type: string
namespace:
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
type: string
resourceVersion:
description: 'Specific resourceVersion to which this reference
is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
type: string
uid:
description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
type: string
waitForIt:
default: true
Expand Down Expand Up @@ -104,6 +132,8 @@ spec:
type: object
databaseKey:
type: string
format:
type: string
hostKey:
type: string
key:
Expand Down
38 changes: 36 additions & 2 deletions bundle/manifests/mariadb.mmontes.io_databases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ spec:
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
- jsonPath: .spec.name
name: Name
type: string
name: v1alpha1
schema:
openAPIV3Schema:
Expand Down Expand Up @@ -63,15 +66,46 @@ spec:
type: string
mariaDbRef:
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
description: 'If referring to a piece of an object instead of
an entire object, this string should contain a valid JSON/Go
field access statement, such as desiredState.manifest.containers[2].
For example, if the object reference is to a container within
a pod, this would take on a value like: "spec.containers{name}"
(where "name" refers to the name of the container that triggered
the event) or if no container name is specified "spec.containers[2]"
(container with index 2 in this pod). This syntax is chosen
only to have some well-defined way of referencing a part of
an object. TODO: this design is not final and this field is
subject to change in the future.'
type: string
kind:
description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?'
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
type: string
namespace:
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
type: string
resourceVersion:
description: 'Specific resourceVersion to which this reference
is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
type: string
uid:
description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
type: string
waitForIt:
default: true
type: boolean
type: object
x-kubernetes-map-type: atomic
name:
maxLength: 80
type: string
required:
- mariaDbRef
type: object
Expand Down
34 changes: 32 additions & 2 deletions bundle/manifests/mariadb.mmontes.io_grants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,41 @@ spec:
grantOption:
default: false
type: boolean
host:
type: string
mariaDbRef:
properties:
apiVersion:
description: API version of the referent.
type: string
fieldPath:
description: 'If referring to a piece of an object instead of
an entire object, this string should contain a valid JSON/Go
field access statement, such as desiredState.manifest.containers[2].
For example, if the object reference is to a container within
a pod, this would take on a value like: "spec.containers{name}"
(where "name" refers to the name of the container that triggered
the event) or if no container name is specified "spec.containers[2]"
(container with index 2 in this pod). This syntax is chosen
only to have some well-defined way of referencing a part of
an object. TODO: this design is not final and this field is
subject to change in the future.'
type: string
kind:
description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?'
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
type: string
namespace:
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
type: string
resourceVersion:
description: 'Specific resourceVersion to which this reference
is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
type: string
uid:
description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
type: string
waitForIt:
default: true
Expand Down
Loading

0 comments on commit 9af9ffb

Please sign in to comment.