Created
October 15, 2018 00:07
-
-
Save gavinzhou/5bdd2c0b422065b1e0091b69831cd715 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$ http 127.0.0.1:8001/apis/example.com/v1/namespaces/default/databases | |
HTTP/1.1 200 OK | |
Content-Length: 593 | |
Content-Type: application/json | |
Date: Wed, 09 Aug 2017 09:38:49 GMT | |
{ | |
"apiVersion": "example.com/v1", | |
"items": [ | |
{ | |
"apiVersion": "example.com/v1", | |
"kind": "Database", | |
"metadata": { | |
"clusterName": "", | |
"creationTimestamp": "2017-08-09T09:38:30Z", | |
"deletionGracePeriodSeconds": null, | |
"deletionTimestamp": null, | |
"name": "wordpress", | |
"namespace": "default", | |
"resourceVersion": "2154", | |
"selfLink": "/apis/example.com/v1/namespaces/default/databases/wordpress", | |
"uid": "8101a7af-7ce6-11e7-888c-42010a9a0fd5" | |
}, | |
"spec": { | |
"encoding": "unicode", | |
"password": "secret", | |
"user": "wp" | |
} | |
} | |
], | |
"kind": "DatabaseList", | |
"metadata": { | |
"resourceVersion": "2179", | |
"selfLink": "/apis/example.com/v1/namespaces/default/databases" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment