-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Greg main - replaces Support for R2DBC connections in DataSource proc…
…essor. #262 (#272) * Support for R2DBC connections in DataSource processor. * Cleaning up some formatting. * Resolved style formatting issues. * Remove Greg MariadDB code * it's now handled directly in MySqlJdbcUrlCreator --------- Co-authored-by: meyerg <meyerg@vmware.com>
- Loading branch information
1 parent
3466053
commit 68dfa18
Showing
3 changed files
with
154 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"p-mysql": [ | ||
{ | ||
"credentials": { | ||
"hostname": "10.0.4.35", | ||
"port": 3306, | ||
"name": "mysql_name", | ||
"username": "mysql_username", | ||
"password": "mysql_password", | ||
"uri": "mysql://mysql_username:mysql_password@10.0.4.35:3306/service_instance_db?reconnect=true", | ||
"jdbcUrl": "jdbc:mysql://10.0.4.35:3306/service_instance_db?permitMysqlScheme&user=mysql_username&password=mysql_password&sslMode=VERIFY_IDENTITY&useSSL=true&requireSSL=true&enabledTLSProtocols=TLSv1.2&serverSslCert=/etc/ssl/certs/ca-certificates.crt" | ||
}, | ||
"syslog_drain_url": null, | ||
"volume_mounts": [], | ||
"label": "p-mysql", | ||
"provider": null, | ||
"plan": "100mb", | ||
"name": "mysql", | ||
"tags": [ | ||
"mysql", | ||
"relational" | ||
] | ||
} | ||
] | ||
} |