-
Notifications
You must be signed in to change notification settings - Fork 27
chore(deps): update helm release mariadb-operator to v0.38.1 #363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/mariadb-operator-0.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e5fc648
to
1f9e3d6
Compare
905adfe
to
735d68b
Compare
735d68b
to
3c301e2
Compare
depends on #434 |
3c301e2
to
ba7774e
Compare
d2e430f
to
23b9cd7
Compare
129217d
to
d0cfce6
Compare
d0cfce6
to
59f60cd
Compare
7f4f6f4
to
28002e4
Compare
6f391e5
to
51c715a
Compare
4dab2b2
to
e2957c3
Compare
e2957c3
to
dcccf40
Compare
143f0f6
to
7fe72ba
Compare
7fe72ba
to
46d244d
Compare
46d244d
to
2899ff4
Compare
0ba1b09
to
7d7d642
Compare
c77a3c2
to
85f8b0b
Compare
85f8b0b
to
3cd46fb
Compare
3cd46fb
to
b4bae65
Compare
b4bae65
to
b1af94f
Compare
b1af94f
to
c5539f8
Compare
c5539f8
to
eb471e1
Compare
2efba98
to
57f7632
Compare
57f7632
to
6890270
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
6890270
to
5c126f8
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.20.0
->0.38.1
Release Notes
mariadb-operator/mariadb-operator (mariadb-operator)
v0.38.1
Compare Source
Run and operate MariaDB in a cloud native way
v0.38.0
Compare Source
Run and operate MariaDB in a cloud native way
v0.37.1
Compare Source
mariadb-operator
0.37.1 is here! 🦭We're excited to introduce TLS 🔐 support in this release, one of the major features of
mariadb-operator
so far! ✨ Check out the TLS docs, our example catalog and the release notes below to start using it.Issue certificates for
MariaDB
andMaxScale
Issuing and configuring TLS certificates for your instances has never been easier, you just need to set
tls.enabled=true
:A self-signed Certificate Authority (CA) will be automatically generated to issue leaf certificates for your instances. The operator will also manage a CA bundle that your applications can use in order to establish trust.
TLS will be enabled by default in
MariaDB
, but it will not enforced. You can enforce TLS connections by settingtls.required=true
to ensure that all connections are encrypted. In the case ofMaxScale
, TLS will only be enabled if you explicitly settls.enabled=true
or the referredMariaDB
(viamariaDbRef
) instance enforces TLS.Native integration with cert-manager
cert-manager is the de facto standard for managing certificates in Kubernetes. This certificate controller simplifies the automatic provisioning, management, and renewal of certificates. It supports a variety of certificate backends (e.g. in-cluster, Hashicorp Vault), which are configured using
Issuer
orClusterIssuer
resources.In your
MariaDB
andMaxScale
resources, you can directly referenceClusterIssuer
orIssuer
objects to seamlessly issue certificates:Under the scenes, the operator will create cert-manager's
Certificate
resources with all the required Subject Alternative Names (SANs) required by your instances. These certificates will be automatically managed by cert-manager and the CA bundle will be updated by the operator so you can establish trust with your instances.The advantage of this approach is that you can use any of the cert-manager's certificate backends, such as the in-cluster CA or HashiCorp Vault, and potentially reuse the same
Issuer
/ClusterIssuer
with multiple instances.Certificate rotation
Whether the certificates are managed by the operator or by cert-manager, they will be automatically renewed before expiration. Additionally, the operator will update the CA bundle whenever the CAs are rotated, temporarily retaining the old CA in the bundle to ensure a seamless update process.
In both scenarios, the standard update strategies apply, allowing you to control how the
Pods
are restarted during certificate rotation.TLS requirements for
Users
We have extended our
User
SQL resource to include TLS-specific requirements for user connections over TLS. For example, if you want to enforce the use of a valid x509 certificate for a user to connect:To restrict the subject of the user's certificate and/or require a specific issuer, you may set:
If any of these TLS requirements are not satisfied, the user will be unable to connect to the instance.
Automatic updates when Galera options are changed
Whenever Galera options are changed, for example, adding
providerOptions
:An update is now automatically triggered, and the
Pods
are restarted according to the configured update strategy.Community contributions
Huge thanks to our awesome contributors! 🙇
We value your feedback! If you encounter any issues or have suggestions, please open an issue on GitHub. Your input is crucial to improve
mariadb-operator
🦭.Join us on Slack: MariaDB Community Slack.
What's Changed
MaxScale
by @mmontes11 in https://github.com/mariadb-operator/mariadb-operator/pull/1143Full Changelog: mariadb-operator/mariadb-operator@0.37.0...0.37.1
v0.37.0
Compare Source
mariadb-operator
0.37.0 is here! 🦭We're excited to introduce TLS 🔐 support in this release, one of the major features of
mariadb-operator
so far! ✨ Check out the TLS docs, our example catalog and the release notes below to start using it.Issue certificates for
MariaDB
andMaxScale
Issuing and configuring TLS certificates for your instances has never been easier, you just need to set
tls.enabled=true
:A self-signed Certificate Authority (CA) will be automatically generated to issue leaf certificates for your instances. The operator will also manage a CA bundle that your applications can use in order to establish trust.
TLS will be enabled by default in
MariaDB
, but it will not enforced. You can enforce TLS connections by settingtls.required=true
to ensure that all connections are encrypted. In the case ofMaxScale
, TLS will only be enabled if you explicitly settls.enabled=true
or the referredMariaDB
(viamariaDbRef
) instance enforces TLS.Native integration with cert-manager
cert-manager is the de facto standard for managing certificates in Kubernetes. This certificate controller simplifies the automatic provisioning, management, and renewal of certificates. It supports a variety of certificate backends (e.g. in-cluster, Hashicorp Vault), which are configured using
Issuer
orClusterIssuer
resources.In your
MariaDB
andMaxScale
resources, you can directly referenceClusterIssuer
orIssuer
objects to seamlessly issue certificates:Under the scenes, the operator will create cert-manager's
Certificate
resources with all the required Subject Alternative Names (SANs) required by your instances. These certificates will be automatically managed by cert-manager and the CA bundle will be updated by the operator so you can establish trust with your instances.The advantage of this approach is that you can use any of the cert-manager's certificate backends, such as the in-cluster CA or HashiCorp Vault, and potentially reuse the same
Issuer
/ClusterIssuer
with multiple instances.Certificate rotation
Whether the certificates are managed by the operator or by cert-manager, they will be automatically renewed before expiration. Additionally, the operator will update the CA bundle whenever the CAs are rotated, temporarily retaining the old CA in the bundle to ensure a seamless update process.
In both scenarios, the standard update strategies apply, allowing you to control how the
Pods
are restarted during certificate rotation.TLS requirements for
Users
We have extended our
User
SQL resource to include TLS-specific requirements for user connections over TLS. For example, if you want to enforce the use of a valid x509 certificate for a user to connect:To restrict the subject of the user's certificate and/or require a specific issuer, you may set:
If any of these TLS requirements are not satisfied, the user will be unable to connect to the instance.
Automatic updates when Galera options are changed
Whenever Galera options are changed, for example, adding
providerOptions
:An update is now automatically triggered, and the
Pods
are restarted according to the configured update strategy.Community contributions
Huge thanks to our awesome contributors! 🙇
We value your feedback! If you encounter any issues or have suggestions, please open an issue on GitHub. Your input is crucial to improve
mariadb-operator
🦭.Join us on Slack: MariaDB Community Slack.
What's Changed
0.37.0
by @mmontes11 in https://github.com/mariadb-operator/mariadb-operator/pull/1118New Contributors
Full Changelog: mariadb-operator/mariadb-operator@0.36.0...0.37.0
v0.36.0
Compare Source
Run and operate MariaDB in a cloud native way
v0.35.1
Compare Source
Run and operate MariaDB in a cloud native way
v0.35.0
Compare Source
Run and operate MariaDB in a cloud native way
v0.34.0
Compare Source
Run and operate MariaDB in a cloud native way
v0.33.0
Compare Source
Run and operate MariaDB in a cloud native way
v0.32.0
Run and operate MariaDB in a cloud native way
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.