🚨 | This repository has been gifted upstream to Kubernetes Service Catalog. Like a salmon after spawning season, its purpose having been achieved, this repo is now closed for business. |
---|
This project is a command-line interface (CLI) for interacting with
Kubernetes Service Catalog
resources. svcat
is a domain-specific tool to make interacting with the Service Catalog easier.
While many of its commands have analogs to kubectl
, our goal is to streamline and optimize
the operator experience, contributing useful code back upstream to Kubernetes where applicable.
svcat
communicates with the Service Catalog API through the aggregated API endpoint on a
Kubernetes cluster.
In order to use svcat
, you will need:
Follow the appropriate instructions for your shell to install svcat
:
curl -sLO https://servicecatalogcli.blob.core.windows.net/cli/latest/$(uname -s)/$(uname -m)/svcat
chmod +x ./svcat
mv ./svcat /usr/local/bin/
svcat --version
iwr 'https://servicecatalogcli.blob.core.windows.net/cli/latest/Windows/x86_64/svcat.exe' -UseBasicParsing -OutFile svcat.exe
mkdir -f ~\bin
$env:PATH += ";${pwd}\bin"
svcat --version
The snippet above adds a directory to your PATH for the current session only. You will need to find a permanent location for it and add it to your PATH.
PATH
.This CLI is called svcat
on the command line. Run svcat -h
to see the available
commands.
Below are some common tasks made easy with svcat
. The example output assumes that Open Service Broker for Azure is installed on the cluster.
$ svcat get brokers
NAME URL STATUS
+------+--------------------------------------------------------------+--------+
osba http://osba-open-service-broker-azure.osba.svc.cluster.local Ready
$ svcat sync broker osba
Successfully fetched catalog entries from osba broker
$ svcat get classes
NAME DESCRIPTION UUID
+--------------------------+--------------------------------+--------------------------------------+
azure-rediscache Azure Redis Cache 0346088a-d4b2-4478-aa32-f18e295ec1d9
azure-storage Azure Storage 2e2fc314-37b6-4587-8127-8f9ee8b33fea
azure-aci Azure Container Instance 451d5d19-4575-4d4a-9474-116f705ecc95
azure-cosmos-document-db Azure DocumentDB provided by 6330de6f-a561-43ea-a15e-b99f44d183e6
CosmosDB and accessible via
SQL (DocumentDB), Gremlin
(Graph), and Table (Key-Value)
APIs
azure-servicebus Azure Service Bus 6dc44338-2f13-4bc5-9247-5b1b3c5462d3
azure-eventhub Azure Event Hub Service 7bade660-32f1-4fd7-b9e6-d416d975170b
azure-cosmos-mongo-db MongoDB on Azure provided by 8797a079-5346-4e84-8018-b7d5ea5c0e3a
CosmosDB
azure-mysqldb Azure Database for MySQL 997b8372-8dac-40ac-ae65-758b4a5075a5
Service
azure-postgresqldb Azure Database for PostgreSQL b43b4bba-5741-4d98-a10b-17dc5cee0175
Service
azuresearch Azure Search c54902aa-3027-4c5c-8e96-5b3d3b452f7f
azure-keyvault Azure Key Vault d90c881e-c9bb-4e07-a87b-fcfe87e03276
azure-sqldb Azure SQL Database Service fb9bc99e-0aa9-11e6-8a8a-000d3a002ed5
$ svcat describe class azure-mysqldb --traverse
Name: azure-mysqldb
Description: Azure Database for MySQL Service
UUID: 997b8372-8dac-40ac-ae65-758b4a5075a5
Status: Active
Tags: Azure, MySQL, Database
Plans:
NAME DESCRIPTION
+-------------+-------------------------+
standard800 Standard Tier, 800 DTUs
basic100 Basic Tier, 100 DTUs
basic50 Basic Tier, 50 DTUs.
standard200 Standard Tier, 200 DTUs
standard400 Standard Tier, 400 DTUs
standard100 Standard Tier, 100 DTUs
$ svcat provision quickstart-wordpress-mysql-instance \
--class azure-mysqldb --plan standard800 \
-p location=eastus -p resourceGroup=default
-p sslEnforcement=disabled \
-p firewallStartIPAddress=0.0.0.0 \
-p firewallEndIPAddress=255.255.255.255
$ svcat describe plan standard800 --traverse
Name: standard800
Description: Standard Tier, 800 DTUs
UUID: 08e4b43a-36bc-447e-a81f-8202b13e339c
Class: azure-mysqldb
Status: Active
Free: false
Instances:
NAME NAMESPACE STATUS
+-----------------------------------+-----------+--------+
deepthoughts-ghost-mysql-instance cms Ready
ponycms-wordpress-mysql-instance cms Ready
$ svcat get bindings --namespace cms
NAME NAMESPACE INSTANCE STATUS
+----------------------------------+-----------+-----------------------------------+--------+
deepthoughts-ghost-mysql-binding cms deepthoughts-ghost-mysql-instance Ready
ponycms-wordpress-mysql-binding cms ponycms-wordpress-mysql-instance Ready
$ svcat bind quickstart-wordpress-mysql-instance \
--name quickstart-wordpress-mysql-binding \
--secret-name quickstart-wordpress-secret
When omitted, the names of the binding and secret are defaulted to the name of the instance.
$ svcat bind wordpress-mysql
$ svcat describe instance ponycms-wordpress-mysql-instance --traverse
Name: ponycms-wordpress-mysql-instance
Namespace: cms
Status: Ready - The instance was provisioned successfully @ 2017-11-30 13:11:49 -0600 CST
Class: azure-mysqldb
Plan: standard800
Class:
Name: azure-mysqldb
UUID: 997b8372-8dac-40ac-ae65-758b4a5075a5
Status: Active
Plan:
Name: standard800
UUID: 08e4b43a-36bc-447e-a81f-8202b13e339c
Status: Active
Broker:
Name: asb
Status: Ready
$ svcat unbind ponycms-wordpress-mysql-instance
$ svcat unbind --name ponycms-wordpress-mysql-binding
Deprovisioning is the process of preparing an instance to be removed, and then deleting it.
$ svcat deprovision ponycms-wordpress-mysql-instance
For details on how to contribute to this project, please see contributing.md.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.