Skip to content

Commit

Permalink
Update mariadb-operator to 0.37.1 (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skaronator authored Jan 30, 2025
1 parent 7ccea1f commit 7dd60b4
Show file tree
Hide file tree
Showing 7 changed files with 1,246 additions and 14 deletions.
4 changes: 1 addition & 3 deletions k8s.mariadb.com/backup_v1alpha1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1108,10 +1108,8 @@
}
},
"required": [
"accessKeyIdSecretKeyRef",
"bucket",
"endpoint",
"secretAccessKeySecretKeyRef"
"endpoint"
],
"type": "object",
"additionalProperties": false
Expand Down
14 changes: 12 additions & 2 deletions k8s.mariadb.com/connection_v1alpha1.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"type": "object"
},
"passwordSecretKeyRef": {
"description": "PasswordSecretKeyRef is a reference to the password to use for configuring the Connection.\nIf the referred Secret is labeled with \"k8s.mariadb.com/watch\", updates may be performed to the Secret in order to update the password.",
"description": "PasswordSecretKeyRef is a reference to the password to use for configuring the Connection.\nEither passwordSecretKeyRef or tlsClientCertSecretRef must be provided as client credentials.\nIf the referred Secret is labeled with \"k8s.mariadb.com/watch\", updates may be performed to the Secret in order to update the password.",
"properties": {
"key": {
"type": "string"
Expand Down Expand Up @@ -163,13 +163,23 @@
"description": "ServiceName to be used in the Connection.",
"type": "string"
},
"tlsClientCertSecretRef": {
"description": "TLSClientCertSecretRef is a reference to a Kubernetes TLS Secret used as authentication when checking the connection health.\nEither passwordSecretKeyRef or tlsClientCertSecretRef must be provided as client credentials.\nIf not provided, the client certificate provided by the referred MariaDB is used if TLS is enabled.\nIf the referred Secret is labeled with \"k8s.mariadb.com/watch\", updates may be performed to the Secret in order to update the client certificate.",
"properties": {
"name": {
"default": "",
"type": "string"
}
},
"type": "object",
"additionalProperties": false
},
"username": {
"description": "Username to use for configuring the Connection.",
"type": "string"
}
},
"required": [
"passwordSecretKeyRef",
"username"
],
"type": "object",
Expand Down
Loading

0 comments on commit 7dd60b4

Please sign in to comment.