File tree Expand file tree Collapse file tree 6 files changed +327
-8
lines changed
Expand file tree Collapse file tree 6 files changed +327
-8
lines changed Original file line number Diff line number Diff line change 1- FROM golang:1.13.5 -stretch
1+ FROM golang:1.14.2 -stretch
22
33RUN apt-get update \
44 && apt install apt-transport-https build-essential curl gnupg2 lintian rpm rsync rubygems-integration ruby-dev ruby -qy \
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ MAINTAINER = plotly
33REPOSITORY = dds-client
44HARDWARE = $(shell uname -m)
55SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
6- BASE_VERSION ?= 0.1 .0
6+ BASE_VERSION ?= 0.2 .0
77IMAGE_NAME ?= $(MAINTAINER ) /$(REPOSITORY )
88
99ifeq ($(CIRCLE_BRANCH ) ,release)
Original file line number Diff line number Diff line change @@ -58,3 +58,67 @@ Delete an app
5858``` shell
5959dds-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+ ```
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module dds-client
33go 1.13
44
55require (
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)
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ github.com/akamensky/argparse v0.0.0-20191006154803-1427fe674291 h1:EQ9p1v9+urDz
66github.com/akamensky/argparse v0.0.0-20191006154803-1427fe674291 /go.mod h1:pdh+2piXurh466J9tqIqq39/9GO2Y8nZt6Cxzu18T9A =
77github.com/akamensky/argparse v1.1.0 h1:ltDglRW6Bjpcd7NyPt8B3aLHELzKmapHgF0JVARe4Xc =
88github.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 =
913github.com/machinebox/graphql v0.2.2 h1:dWKpJligYKhYKO5A2gvNhkJdQMNZeChZYyBbrZkBZfo =
1014github.com/machinebox/graphql v0.2.2 /go.mod h1:F+kbVMHuwrQ5tYgU9JXlnskM8nOaFxCAEolaQybkjWA =
1115github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I =
You can’t perform that action at this time.
0 commit comments