gh-ost/doc
Rafe Kettler b4da7cfbfb Improve SSL support
Related issue: https://github.com/github/gh-ost/issues/521

 - Add --ssl-cert and --ssl-key options to specify SSL public/private
   key files
 - Allow combining --ssl-allow-insecure with other --ssl* flags.
   `mysql.RegisterTLSConfig` allows combining the corresponding
   parameters in the `tls.Config` it receives, so gh-ost should
   allow this. I found being able to pass --ssl-allow-insecure along
   with --ssl-ca, --ssl-cert, and --ssl-key useful in testing.
 - Use the same TLS config everywhere. Since the CLI only supports
   a single set of --ssl* configuration parameters, this should be
   fine -- `mysql.RegisterTLSConfig` documentation indicates the
   TLS config given will not be modified, so it can safely be used
   in many goroutines provided we also do not modify it. The previous
   implementation did not work when the TLS config was duplicated,
   which happens when gh-ost walks up the replication chain trying
   to find the master. This is because, when the config is duplicated,
   we must call `RegisterTLSConfig` again with the new config. This
   config is exactly the same, so it's easiest to side-step the issue
   by registering the TLS config once and using it everywhere.
2019-02-22 10:33:19 -08:00
..
images illustrations 2016-07-16 05:44:04 -06:00
cheatsheet.md documenting concurrent migrations 2017-07-26 14:24:47 +03:00
coding-ghost.md - Updating PR template to reflect current build workflow 2017-05-04 12:51:00 -06:00
command-line-flags.md Improve SSL support 2019-02-22 10:33:19 -08:00
cut-over.md more comments on cut-over 2016-09-01 13:12:24 +02:00
hooks.md added: --hooks-hint-owner, --hooks-hint-token 2019-01-24 13:06:20 +02:00
interactive-commands.md spelling: argument 2017-11-08 00:44:55 +00:00
local-tests.md added documentation for local tests 2016-08-24 12:51:01 +02:00
migrating-with-sbr.md fix more docs typos 2016-09-30 12:39:50 -04:00
perks.md begin documentation on sub-second replication lag throttling 2016-09-01 13:13:04 +02:00
questions.md Add Why Is "Connect to Replica" mode preferred? 2019-01-16 06:28:05 +11:00
rds.md Fix the grammar for the opening sentence 2018-05-02 11:41:45 -07:00
requirements-and-limitations.md Support for GCP (Google Cloud Platform) 2018-09-02 09:51:40 +03:00
shared-key.md Merge branch 'master' into ggunson-shared-key-docs 2018-10-15 21:15:24 -07:00
subsecond-lag.md grammar 2017-01-04 08:30:23 +02:00
testing-on-replica.md Change docs from referencing gh-osc 2016-09-28 15:20:48 -04:00
the-fine-print.md Added note about table schema needing to be identical 2016-10-19 05:29:34 -07:00
throttle.md lower case arg name 2018-12-16 07:48:20 +02:00
triggerless-design.md Small typo correction 2016-11-04 11:04:43 -04:00
understanding-output.md spelling: dropping 2017-11-08 00:47:15 +00:00
what-if.md doc: fix link to cheatsheet on What If page 2016-10-19 23:41:00 +02:00
why-triggerless.md spelling: atomicity 2017-11-08 00:45:05 +00:00