MCPcopy Index your code
hub / github.com/andreasf/cf-mysql-plugin

github.com/andreasf/cf-mysql-plugin @v2.1.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.1.0 ↗ · + Follow
334 symbols 694 edges 47 files 13 documented · 4%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Cloud Foundry CLI MySQL Plugin

build-and-test License

cf-mysql-plugin makes it easy to connect the mysql command line client to any MySQL-compatible database used by Cloud Foundry apps. Use it to

  • inspect databases for debugging purposes
  • manually adjust schema or contents in development environments
  • dump and restore databases

Contents

Usage

$ cf mysql -h
NAME:
   mysql - Connect to a MySQL database service

USAGE:
   Open a mysql client to a database:
   cf mysql <service-name> [mysql args...]


$ cf mysqldump -h
NAME:
   mysqldump - Dump a MySQL database

USAGE:
   Dumping all tables in a database:
   cf mysqldump <service-name> [mysqldump args...]

   Dumping specific tables in a database:
   cf mysqldump <service-name> [tables...] [mysqldump args...]

Connecting to a database

Passing the name of a database service will open a MySQL client:

$ cf mysql my-db
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MySQL connection id is 1377314
Server version: 5.5.46-log MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MySQL [ad_67fd2577d50deb5]> 

Piping queries or dumps into mysql

The mysql child process inherits standard input, output and error. Piping content in and out of cf mysql works just like it does with plain mysql:

$ cat database-dump.sql | cf mysql my-db

Passing arguments to mysql

Any parameters after the database name are added to the mysql invocation:

$ echo "select 1 as foo, 2 as bar;" | cf mysql my-db --xml
<?xml version="1.0"?>

<resultset statement="select 1 as foo, 2 as bar" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <row>
        <field name="foo">1</field>
        <field name="bar">2</field>
  </row>
</resultset>

Dumping a database

Running cf mysqldump with a database name will dump the whole database:

$ cf mysqldump my-db --single-transaction > dump.sql

Dumping individual tables

Passing table names in addition to the database name will just dump those tables:

$ cf mysqldump my-db table1 table2 --single-transaction > two-tables.sql

Removing service keys

The plugin creates a service key called 'cf-mysql' for each service instance a user connects to. The keys are reused when available and never deleted. Keys need to be removed manually before their service instances can be removed:

$ cf delete-service -f somedb
Deleting service somedb in org afleig-org / space acceptance as afleig@pivotal.io...
FAILED
Cannot delete service instance. Service keys, bindings, and shares must first be deleted.

Deleting the service failed. The CLI hints at service keys and app bindings that might still exist.

$ cf service-keys somedb
Getting keys for service instance somedb as afleig@pivotal.io...

name
cf-mysql

A key called 'cf-mysql' is found for the service instance 'somedb', because we have used the plugin with 'somedb' earlier. After removing the key, the service instance can be deleted:

$ cf delete-service-key -f somedb cf-mysql
Deleting key cf-mysql for service instance somedb as afleig@pivotal.io...
OK

$ cf delete-service -f somedb
Deleting service somedb in org afleig-org / space acceptance as afleig@pivotal.io...
OK

This behavior might change in the future as it's not optimal to leave a key around.

Installing and uninstalling

The easiest way is to install from the repository:

$ cf install-plugin -r "CF-Community" mysql-plugin

You can also download a binary release or build yourself by running go build. Then, install the plugin with

$ cf install-plugin /path/to/cf-mysql-plugin

The plugin can be uninstalled with:

$ cf uninstall-plugin mysql

Building

# install ginkgo test runner
go install github.com/onsi/ginkgo/v2/ginkgo

# run tests and build
ginkgo -r
go build

Details

Obtaining credentials

cf-mysql-plugin creates a service key called 'cf-mysql' to obtain credentials. It no longer retrieves credentials from application environment variables, because with the introduction of CredHub, service brokers can decide to return a CredHub reference instead.

The service key is currently not deleted after closing the connection. It can be deleted by running:

cf delete-service-key service-instance-name cf-mysql

A started application instance is still required in the current space for setting up an SSH tunnel. If you don't have an app running, try the following to start an nginx app:

TEMP_DIR=`mktemp -d`
pushd $TEMP_DIR
touch Staticfile
cf push static-app -m 128M --no-route
popd
rm -r $TEMP_DIR

Extension points exported contracts — how you extend this code

SshRunner (Interface)
go:generate counterfeiter . SshRunner [4 implementers]
cfmysql/ssh_runner.go
HttpWrapper (Interface)
go:generate counterfeiter . HttpWrapper [2 implementers]
cfmysql/http_wrapper.go
PortFinder (Interface)
go:generate counterfeiter . PortFinder [2 implementers]
cfmysql/port_finder.go
IoUtilWrapper (Interface)
go:generate counterfeiter . IoUtilWrapper [2 implementers]
cfmysql/ioutil_wrapper.go
PortWaiter (Interface)
go:generate counterfeiter . PortWaiter [2 implementers]
cfmysql/port_waiter.go
OsWrapper (Interface)
go:generate counterfeiter . OsWrapper [2 implementers]
cfmysql/os_wrapper.go
MysqlRunner (Interface)
go:generate counterfeiter . MysqlRunner [2 implementers]
cfmysql/mysql_runner.go
ExecWrapper (Interface)
go:generate counterfeiter . ExecWrapper [2 implementers]
cfmysql/exec_wrapper.go

Core symbols most depended-on inside this repo

Run
called by 15
cfmysql/exec_wrapper.go
GetServiceReturns
called by 13
cfmysql/cfmysqlfakes/fake_api_client.go
LookPathReturns
called by 10
cfmysql/cfmysqlfakes/fake_exec_wrapper.go
GetService
called by 9
cfmysql/api_client.go
GetStartedAppsReturns
called by 8
cfmysql/cfmysqlfakes/fake_api_client.go
recordInvocation
called by 8
cfmysql/netfakes/fake_conn.go
Get
called by 7
cfmysql/http_wrapper.go
NewHttpWrapper
called by 7
cfmysql/http_wrapper.go

Shape

Method 243
Struct 49
Function 29
Interface 13

Languages

Go100%

Modules by API surface

cfmysql/netfakes/fake_conn.go32 symbols
cfmysql/cfmysqlfakes/fake_os_wrapper.go23 symbols
cfmysql/cfmysqlfakes/fake_api_client.go23 symbols
cfmysql/api_client.go19 symbols
cfmysql/cfmysqlfakes/fake_cf_service.go16 symbols
cfmysql/resources/resources.go14 symbols
cfmysql/cfmysqlfakes/fake_net_wrapper.go13 symbols
cfmysql/cfmysqlfakes/fake_mysql_runner.go13 symbols
cfmysql/cfmysqlfakes/fake_http_wrapper.go13 symbols
cfmysql/cfmysqlfakes/fake_exec_wrapper.go13 symbols
cfmysql/plugin.go11 symbols
cfmysql/os_wrapper.go11 symbols

Datastores touched

(mysql)Database · 1 repos
db-nameDatabase · 1 repos

For agents

$ claude mcp add cf-mysql-plugin \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page