Merge "Add TLS handling to mariadb backup and restore"

This commit is contained in:
Zuul 2020-08-14 04:48:47 +00:00 committed by Gerrit Code Review
commit adf9fc7fc4

View File

@ -12,6 +12,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
{{- $envAll := . }}
# Capture the user's command line arguments # Capture the user's command line arguments
ARGS=("$@") ARGS=("$@")
@ -44,6 +46,12 @@ RESTORE_CMD="mysql \
--user=${RESTORE_USER} \ --user=${RESTORE_USER} \
--password=${RESTORE_PW} \ --password=${RESTORE_PW} \
--host=$MARIADB_SERVER_SERVICE_HOST \ --host=$MARIADB_SERVER_SERVICE_HOST \
{{- if .Values.manifests.certificates }}
--ssl-verify-server-cert=false \
--ssl-ca=/etc/mysql/certs/ca.crt \
--ssl-key=/etc/mysql/certs/tls.key \
--ssl-cert=/etc/mysql/certs/tls.crt \
{{- end }}
--connect-timeout 10" --connect-timeout 10"
# Get a single database data from the SQL file. # Get a single database data from the SQL file.