Skip to content

Commit 93117ba

Browse files
authored
Merge pull request #13 from plotly/master
Release 0.2.0
2 parents afd31f6 + 4d6ccee commit 93117ba

File tree

6 files changed

+327
-8
lines changed

6 files changed

+327
-8
lines changed

Dockerfile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13.5-stretch
1+
FROM golang:1.14.2-stretch
22

33
RUN apt-get update \
44
&& apt install apt-transport-https build-essential curl gnupg2 lintian rpm rsync rubygems-integration ruby-dev ruby -qy \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MAINTAINER = plotly
33
REPOSITORY = dds-client
44
HARDWARE = $(shell uname -m)
55
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
6-
BASE_VERSION ?= 0.1.0
6+
BASE_VERSION ?= 0.2.0
77
IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY)
88

99
ifeq ($(CIRCLE_BRANCH),release)

README.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,67 @@ Delete an app
5858
```shell
5959
dds-client apps:delete --name dopsa
6060
```
61+
62+
#### `postgres:list`
63+
64+
List all postgres services
65+
66+
```shell
67+
dds-client postgres:list
68+
```
69+
70+
#### `postgres:exists`
71+
72+
Check if a postgres service exists
73+
74+
```shell
75+
dds-client postgres:exists --name dopsa
76+
```
77+
78+
#### `postgres:create`
79+
80+
Create a postgres service
81+
82+
```shell
83+
dds-client postgres:create --name dopsa
84+
```
85+
86+
#### `postgres:delete`
87+
88+
Delete a postgres service
89+
90+
```shell
91+
dds-client postgres:delete --name dopsa
92+
```
93+
94+
#### `redis:list`
95+
96+
List all redis services
97+
98+
```shell
99+
dds-client redis:list
100+
```
101+
102+
#### `redis:exists`
103+
104+
Check if a redis service exists
105+
106+
```shell
107+
dds-client redis:exists --name dopsa
108+
```
109+
110+
#### `redis:create`
111+
112+
Create a redis service
113+
114+
```shell
115+
dds-client redis:create --name dopsa
116+
```
117+
118+
#### `redis:delete`
119+
120+
Delete a redis service
121+
122+
```shell
123+
dds-client redis:delete --name dopsa
124+
```

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module dds-client
33
go 1.13
44

55
require (
6-
github.com/akamensky/argparse v1.1.0
6+
github.com/akamensky/argparse v1.2.1
77
github.com/machinebox/graphql v0.2.2
88
github.com/pkg/errors v0.8.1 // indirect
99
)

go.sum

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ github.com/akamensky/argparse v0.0.0-20191006154803-1427fe674291 h1:EQ9p1v9+urDz
66
github.com/akamensky/argparse v0.0.0-20191006154803-1427fe674291/go.mod h1:pdh+2piXurh466J9tqIqq39/9GO2Y8nZt6Cxzu18T9A=
77
github.com/akamensky/argparse v1.1.0 h1:ltDglRW6Bjpcd7NyPt8B3aLHELzKmapHgF0JVARe4Xc=
88
github.com/akamensky/argparse v1.1.0/go.mod h1:S5kwC7IuDcEr5VeXtGPRVZ5o/FdhcMlQz4IZQuw64xA=
9+
github.com/akamensky/argparse v1.2.0 h1:0QUdYhn/6MAvIH5XHgZDt9sHKLq24KyMWgi77NJZDbM=
10+
github.com/akamensky/argparse v1.2.0/go.mod h1:S5kwC7IuDcEr5VeXtGPRVZ5o/FdhcMlQz4IZQuw64xA=
11+
github.com/akamensky/argparse v1.2.1 h1:YMYF1VMku+dnz7TVTJpYhsCXHSYCVMAIcKaBbjwbvZo=
12+
github.com/akamensky/argparse v1.2.1/go.mod h1:S5kwC7IuDcEr5VeXtGPRVZ5o/FdhcMlQz4IZQuw64xA=
913
github.com/machinebox/graphql v0.2.2 h1:dWKpJligYKhYKO5A2gvNhkJdQMNZeChZYyBbrZkBZfo=
1014
github.com/machinebox/graphql v0.2.2/go.mod h1:F+kbVMHuwrQ5tYgU9JXlnskM8nOaFxCAEolaQybkjWA=
1115
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=

0 commit comments

Comments
 (0)