Added cleanupPolicy examples

This commit is contained in:
mmontes11
2024-08-22 22:12:59 +02:00
committed by Martin Montes
parent 181cf01bd0
commit 306539be99
3 changed files with 10 additions and 0 deletions

View File

@ -9,5 +9,8 @@ spec:
name: mariadb
characterSet: utf8
collate: utf8_general_ci
# Delete the resource in the database whenever the CR gets deleted.
# Alternatively, you can specify Skip in order to omit deletion.
cleanupPolicy: Delete
requeueInterval: 30s
retryInterval: 5s

View File

@ -15,5 +15,8 @@ spec:
username: user
grantOption: true
host: "%"
# Delete the resource in the database whenever the CR gets deleted.
# Alternatively, you can specify Skip in order to omit deletion.
cleanupPolicy: Delete
requeueInterval: 30s
retryInterval: 5s

View File

@ -13,4 +13,8 @@ spec:
# This field is immutable and defaults to 10
maxUserConnections: 20
host: "%"
# Delete the resource in the database whenever the CR gets deleted.
# Alternatively, you can specify Skip in order to omit deletion.
cleanupPolicy: Delete
requeueInterval: 30s
retryInterval: 5s