magellan-cli 0.7.11 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +6 -16
- data/Rakefile +32 -4
- data/lib/magellan/cli/command.rb +1 -1
- data/lib/magellan/cli/messaging/base.rb +2 -2
- data/lib/magellan/cli/reference_generator.rb +2 -1
- data/lib/magellan/cli/resources/stage.rb +4 -4
- data/lib/magellan/cli/version.rb +1 -1
- data/lib/magellan/cli.rb +0 -1
- data/reference/en/index.md +20 -15
- data/reference/en/messaging/http.md +117 -0
- data/reference/en/messaging/mqtt.md +48 -0
- data/reference/en/resources/authority.md +93 -0
- data/reference/en/resources/client_version.md +99 -0
- data/reference/en/resources/cloudsql.md +94 -0
- data/reference/en/resources/container.md +66 -0
- data/reference/en/resources/image.md +66 -0
- data/reference/en/resources/organization.md +84 -0
- data/reference/en/resources/project.md +93 -0
- data/reference/en/resources/stage.md +182 -0
- data/reference/en/resources/team.md +84 -0
- data/reference/en/resources/worker.md +108 -0
- data/reference/ja/index.md +20 -15
- data/reference/ja/messaging/http.md +117 -0
- data/reference/ja/messaging/mqtt.md +48 -0
- data/reference/ja/resources/authority.md +93 -0
- data/reference/ja/resources/client_version.md +99 -0
- data/reference/ja/resources/cloudsql.md +94 -0
- data/reference/ja/resources/container.md +66 -0
- data/reference/ja/resources/image.md +66 -0
- data/reference/ja/resources/organization.md +84 -0
- data/reference/ja/resources/project.md +93 -0
- data/reference/ja/resources/stage.md +182 -0
- data/reference/ja/resources/team.md +84 -0
- data/reference/ja/resources/worker.md +108 -0
- metadata +26 -20
- data/reference/en/client_version.md +0 -83
- data/reference/en/cloudsql.md +0 -93
- data/reference/en/container.md +0 -65
- data/reference/en/image.md +0 -65
- data/reference/en/organization.md +0 -83
- data/reference/en/project.md +0 -92
- data/reference/en/stage.md +0 -181
- data/reference/en/team.md +0 -74
- data/reference/en/worker.md +0 -107
- data/reference/ja/client_version.md +0 -83
- data/reference/ja/cloudsql.md +0 -93
- data/reference/ja/container.md +0 -65
- data/reference/ja/image.md +0 -65
- data/reference/ja/organization.md +0 -83
- data/reference/ja/project.md +0 -92
- data/reference/ja/stage.md +0 -181
- data/reference/ja/team.md +0 -74
- data/reference/ja/worker.md +0 -107
@@ -0,0 +1,66 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: image | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / image <a href="/reference/en/resources/image.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli image list](#list)
|
10
|
+
- [magellan-cli image show [ID]](#show)
|
11
|
+
- [magellan-cli image select NAME](#select)
|
12
|
+
- [magellan-cli image deselect](#deselect)
|
13
|
+
- [magellan-cli image help [COMMAND]](#help)
|
14
|
+
|
15
|
+
## 共通オプション
|
16
|
+
|
17
|
+
```text
|
18
|
+
Options:
|
19
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
20
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
21
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
22
|
+
|
23
|
+
```
|
24
|
+
|
25
|
+
|
26
|
+
## コマンドの詳細
|
27
|
+
### <a name="list"></a>list
|
28
|
+
|
29
|
+
```text
|
30
|
+
magellan-cli image list
|
31
|
+
```
|
32
|
+
|
33
|
+
images の一覧を表示します
|
34
|
+
|
35
|
+
### <a name="show"></a>show
|
36
|
+
|
37
|
+
```text
|
38
|
+
magellan-cli image show [ID]
|
39
|
+
```
|
40
|
+
|
41
|
+
IDで指定されたimageの詳細を表示します
|
42
|
+
|
43
|
+
### <a name="select"></a>select
|
44
|
+
|
45
|
+
```text
|
46
|
+
magellan-cli image select NAME
|
47
|
+
```
|
48
|
+
|
49
|
+
NAMEを指定してimageを選択します
|
50
|
+
|
51
|
+
### <a name="deselect"></a>deselect
|
52
|
+
|
53
|
+
```text
|
54
|
+
magellan-cli image deselect
|
55
|
+
```
|
56
|
+
|
57
|
+
imageの選択を解除します
|
58
|
+
|
59
|
+
### <a name="help"></a>help
|
60
|
+
|
61
|
+
```text
|
62
|
+
magellan-cli image help [COMMAND]
|
63
|
+
```
|
64
|
+
|
65
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
66
|
+
|
@@ -0,0 +1,84 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: organization | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / organization <a href="/reference/en/resources/organization.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli organization list](#list)
|
10
|
+
- [magellan-cli organization show [ID]](#show)
|
11
|
+
- [magellan-cli organization select NAME](#select)
|
12
|
+
- [magellan-cli organization deselect](#deselect)
|
13
|
+
- [magellan-cli organization delete NAME](#delete)
|
14
|
+
- [magellan-cli organization create NAME](#create)
|
15
|
+
- [magellan-cli organization help [COMMAND]](#help)
|
16
|
+
|
17
|
+
## 共通オプション
|
18
|
+
|
19
|
+
```text
|
20
|
+
Options:
|
21
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
22
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
23
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
|
28
|
+
## コマンドの詳細
|
29
|
+
### <a name="list"></a>list
|
30
|
+
|
31
|
+
```text
|
32
|
+
magellan-cli organization list
|
33
|
+
```
|
34
|
+
|
35
|
+
organizations の一覧を表示します
|
36
|
+
|
37
|
+
### <a name="show"></a>show
|
38
|
+
|
39
|
+
```text
|
40
|
+
magellan-cli organization show [ID]
|
41
|
+
```
|
42
|
+
|
43
|
+
IDで指定されたorganizationの詳細を表示します
|
44
|
+
|
45
|
+
### <a name="select"></a>select
|
46
|
+
|
47
|
+
```text
|
48
|
+
magellan-cli organization select NAME
|
49
|
+
```
|
50
|
+
|
51
|
+
NAMEを指定してorganizationを選択します
|
52
|
+
|
53
|
+
### <a name="deselect"></a>deselect
|
54
|
+
|
55
|
+
```text
|
56
|
+
magellan-cli organization deselect
|
57
|
+
```
|
58
|
+
|
59
|
+
organizationの選択を解除します
|
60
|
+
|
61
|
+
### <a name="delete"></a>delete
|
62
|
+
|
63
|
+
```text
|
64
|
+
magellan-cli organization delete NAME
|
65
|
+
```
|
66
|
+
|
67
|
+
NAMEを指定してorganizationを削除します
|
68
|
+
|
69
|
+
### <a name="create"></a>create
|
70
|
+
|
71
|
+
```text
|
72
|
+
magellan-cli organization create NAME
|
73
|
+
```
|
74
|
+
|
75
|
+
NAMEを指定してorganizationを登録します
|
76
|
+
|
77
|
+
### <a name="help"></a>help
|
78
|
+
|
79
|
+
```text
|
80
|
+
magellan-cli organization help [COMMAND]
|
81
|
+
```
|
82
|
+
|
83
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
84
|
+
|
@@ -0,0 +1,93 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: project | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / project <a href="/reference/en/resources/project.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli project list](#list)
|
10
|
+
- [magellan-cli project show [ID]](#show)
|
11
|
+
- [magellan-cli project select NAME](#select)
|
12
|
+
- [magellan-cli project deselect](#deselect)
|
13
|
+
- [magellan-cli project delete NAME](#delete)
|
14
|
+
- [magellan-cli project update ATTRIBUTES](#update)
|
15
|
+
- [magellan-cli project create NAME](#create)
|
16
|
+
- [magellan-cli project help [COMMAND]](#help)
|
17
|
+
|
18
|
+
## 共通オプション
|
19
|
+
|
20
|
+
```text
|
21
|
+
Options:
|
22
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
23
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
24
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
25
|
+
|
26
|
+
```
|
27
|
+
|
28
|
+
|
29
|
+
## コマンドの詳細
|
30
|
+
### <a name="list"></a>list
|
31
|
+
|
32
|
+
```text
|
33
|
+
magellan-cli project list
|
34
|
+
```
|
35
|
+
|
36
|
+
projects の一覧を表示します
|
37
|
+
|
38
|
+
### <a name="show"></a>show
|
39
|
+
|
40
|
+
```text
|
41
|
+
magellan-cli project show [ID]
|
42
|
+
```
|
43
|
+
|
44
|
+
IDで指定されたprojectの詳細を表示します
|
45
|
+
|
46
|
+
### <a name="select"></a>select
|
47
|
+
|
48
|
+
```text
|
49
|
+
magellan-cli project select NAME
|
50
|
+
```
|
51
|
+
|
52
|
+
NAMEを指定してprojectを選択します
|
53
|
+
|
54
|
+
### <a name="deselect"></a>deselect
|
55
|
+
|
56
|
+
```text
|
57
|
+
magellan-cli project deselect
|
58
|
+
```
|
59
|
+
|
60
|
+
projectの選択を解除します
|
61
|
+
|
62
|
+
### <a name="delete"></a>delete
|
63
|
+
|
64
|
+
```text
|
65
|
+
magellan-cli project delete NAME
|
66
|
+
```
|
67
|
+
|
68
|
+
NAMEを指定してprojectを削除します
|
69
|
+
|
70
|
+
### <a name="update"></a>update
|
71
|
+
|
72
|
+
```text
|
73
|
+
magellan-cli project update ATTRIBUTES
|
74
|
+
```
|
75
|
+
|
76
|
+
選択したprojectの属性を指定したATTRIBUTESで更新します
|
77
|
+
|
78
|
+
### <a name="create"></a>create
|
79
|
+
|
80
|
+
```text
|
81
|
+
magellan-cli project create NAME
|
82
|
+
```
|
83
|
+
|
84
|
+
NAMEを指定してprojectを登録します
|
85
|
+
|
86
|
+
### <a name="help"></a>help
|
87
|
+
|
88
|
+
```text
|
89
|
+
magellan-cli project help [COMMAND]
|
90
|
+
```
|
91
|
+
|
92
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
93
|
+
|
@@ -0,0 +1,182 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: stage | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / stage <a href="/reference/en/resources/stage.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli stage list](#list)
|
10
|
+
- [magellan-cli stage show [ID]](#show)
|
11
|
+
- [magellan-cli stage select NAME](#select)
|
12
|
+
- [magellan-cli stage deselect](#deselect)
|
13
|
+
- [magellan-cli stage delete NAME](#delete)
|
14
|
+
- [magellan-cli stage create NAME [-t development|staging|production]](#create)
|
15
|
+
- [magellan-cli stage planning](#planning)
|
16
|
+
- [magellan-cli stage current](#current)
|
17
|
+
- [magellan-cli stage prepare](#prepare)
|
18
|
+
- [magellan-cli stage repair](#repair)
|
19
|
+
- [magellan-cli stage update ATTRIBUTES](#update)
|
20
|
+
- [magellan-cli stage release_now](#release_now)
|
21
|
+
- [magellan-cli stage logs](#logs)
|
22
|
+
- [magellan-cli stage set_container_num NUM](#set_container_num)
|
23
|
+
- [magellan-cli stage reload](#reload)
|
24
|
+
- [magellan-cli stage help [COMMAND]](#help)
|
25
|
+
|
26
|
+
## 共通オプション
|
27
|
+
|
28
|
+
```text
|
29
|
+
Options:
|
30
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
31
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
32
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
33
|
+
|
34
|
+
```
|
35
|
+
|
36
|
+
|
37
|
+
## コマンドの詳細
|
38
|
+
### <a name="list"></a>list
|
39
|
+
|
40
|
+
```text
|
41
|
+
magellan-cli stage list
|
42
|
+
```
|
43
|
+
|
44
|
+
stages の一覧を表示します
|
45
|
+
|
46
|
+
### <a name="show"></a>show
|
47
|
+
|
48
|
+
```text
|
49
|
+
magellan-cli stage show [ID]
|
50
|
+
```
|
51
|
+
|
52
|
+
IDで指定されたstageの詳細を表示します
|
53
|
+
|
54
|
+
### <a name="select"></a>select
|
55
|
+
|
56
|
+
```text
|
57
|
+
magellan-cli stage select NAME
|
58
|
+
```
|
59
|
+
|
60
|
+
NAMEを指定してstageを選択します
|
61
|
+
|
62
|
+
### <a name="deselect"></a>deselect
|
63
|
+
|
64
|
+
```text
|
65
|
+
magellan-cli stage deselect
|
66
|
+
```
|
67
|
+
|
68
|
+
stageの選択を解除します
|
69
|
+
|
70
|
+
### <a name="delete"></a>delete
|
71
|
+
|
72
|
+
```text
|
73
|
+
magellan-cli stage delete NAME
|
74
|
+
```
|
75
|
+
|
76
|
+
NAMEを指定してstageを削除します
|
77
|
+
|
78
|
+
### <a name="create"></a>create
|
79
|
+
|
80
|
+
```text
|
81
|
+
magellan-cli stage create NAME [-t development|staging|production]
|
82
|
+
```
|
83
|
+
|
84
|
+
```text
|
85
|
+
Options:
|
86
|
+
[-t=T] # -t development|staging|production いづれかのTYPEを指定してください
|
87
|
+
# Default: development
|
88
|
+
|
89
|
+
```
|
90
|
+
|
91
|
+
NAMEとTYPEを指定してstageを登録します
|
92
|
+
|
93
|
+
### <a name="planning"></a>planning
|
94
|
+
|
95
|
+
```text
|
96
|
+
magellan-cli stage planning
|
97
|
+
```
|
98
|
+
|
99
|
+
次回リリースのステージの計画に切り替えます
|
100
|
+
|
101
|
+
### <a name="current"></a>current
|
102
|
+
|
103
|
+
```text
|
104
|
+
magellan-cli stage current
|
105
|
+
```
|
106
|
+
|
107
|
+
現在リリースされているステージの情報に切り替えます
|
108
|
+
|
109
|
+
### <a name="prepare"></a>prepare
|
110
|
+
|
111
|
+
```text
|
112
|
+
magellan-cli stage prepare
|
113
|
+
```
|
114
|
+
|
115
|
+
containersを準備します
|
116
|
+
|
117
|
+
### <a name="repair"></a>repair
|
118
|
+
|
119
|
+
```text
|
120
|
+
magellan-cli stage repair
|
121
|
+
```
|
122
|
+
|
123
|
+
stageの状態を修正します
|
124
|
+
|
125
|
+
### <a name="update"></a>update
|
126
|
+
|
127
|
+
```text
|
128
|
+
magellan-cli stage update ATTRIBUTES
|
129
|
+
```
|
130
|
+
|
131
|
+
選択したstageの属性を指定したATTRIBUTESで更新します
|
132
|
+
|
133
|
+
### <a name="release_now"></a>release_now
|
134
|
+
|
135
|
+
```text
|
136
|
+
magellan-cli stage release_now
|
137
|
+
```
|
138
|
+
|
139
|
+
```text
|
140
|
+
Options:
|
141
|
+
[-A], [--no-A] # -A 非同期モード。リリースの終了を待たずにコマンドを終了します
|
142
|
+
[-i=N] # -i 状態を取得する間隔を秒で指定します
|
143
|
+
# Default: 10
|
144
|
+
[-t=N] # -t タイムアウトを秒で指定します
|
145
|
+
# Default: 600
|
146
|
+
|
147
|
+
```
|
148
|
+
|
149
|
+
すぐにリリースを開始します
|
150
|
+
|
151
|
+
### <a name="logs"></a>logs
|
152
|
+
|
153
|
+
```text
|
154
|
+
magellan-cli stage logs
|
155
|
+
```
|
156
|
+
|
157
|
+
workersのログを表示します
|
158
|
+
|
159
|
+
### <a name="set_container_num"></a>set_container_num
|
160
|
+
|
161
|
+
```text
|
162
|
+
magellan-cli stage set_container_num NUM
|
163
|
+
```
|
164
|
+
|
165
|
+
選択されたimageのcontainersの数を設定します
|
166
|
+
|
167
|
+
### <a name="reload"></a>reload
|
168
|
+
|
169
|
+
```text
|
170
|
+
magellan-cli stage reload
|
171
|
+
```
|
172
|
+
|
173
|
+
最後にselectされたものをロードし直します
|
174
|
+
|
175
|
+
### <a name="help"></a>help
|
176
|
+
|
177
|
+
```text
|
178
|
+
magellan-cli stage help [COMMAND]
|
179
|
+
```
|
180
|
+
|
181
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
182
|
+
|
@@ -0,0 +1,84 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: team | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / team <a href="/reference/en/resources/team.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli team list](#list)
|
10
|
+
- [magellan-cli team show [ID]](#show)
|
11
|
+
- [magellan-cli team select NAME](#select)
|
12
|
+
- [magellan-cli team deselect](#deselect)
|
13
|
+
- [magellan-cli team delete NAME](#delete)
|
14
|
+
- [magellan-cli team create NAME ROLE](#create)
|
15
|
+
- [magellan-cli team help [COMMAND]](#help)
|
16
|
+
|
17
|
+
## 共通オプション
|
18
|
+
|
19
|
+
```text
|
20
|
+
Options:
|
21
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
22
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
23
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
|
28
|
+
## コマンドの詳細
|
29
|
+
### <a name="list"></a>list
|
30
|
+
|
31
|
+
```text
|
32
|
+
magellan-cli team list
|
33
|
+
```
|
34
|
+
|
35
|
+
teams の一覧を表示します
|
36
|
+
|
37
|
+
### <a name="show"></a>show
|
38
|
+
|
39
|
+
```text
|
40
|
+
magellan-cli team show [ID]
|
41
|
+
```
|
42
|
+
|
43
|
+
IDで指定されたteamの詳細を表示します
|
44
|
+
|
45
|
+
### <a name="select"></a>select
|
46
|
+
|
47
|
+
```text
|
48
|
+
magellan-cli team select NAME
|
49
|
+
```
|
50
|
+
|
51
|
+
NAMEを指定してteamを選択します
|
52
|
+
|
53
|
+
### <a name="deselect"></a>deselect
|
54
|
+
|
55
|
+
```text
|
56
|
+
magellan-cli team deselect
|
57
|
+
```
|
58
|
+
|
59
|
+
teamの選択を解除します
|
60
|
+
|
61
|
+
### <a name="delete"></a>delete
|
62
|
+
|
63
|
+
```text
|
64
|
+
magellan-cli team delete NAME
|
65
|
+
```
|
66
|
+
|
67
|
+
NAMEを指定してteamを削除します
|
68
|
+
|
69
|
+
### <a name="create"></a>create
|
70
|
+
|
71
|
+
```text
|
72
|
+
magellan-cli team create NAME ROLE
|
73
|
+
```
|
74
|
+
|
75
|
+
NAMEとROLEを指定してteamを登録します
|
76
|
+
|
77
|
+
### <a name="help"></a>help
|
78
|
+
|
79
|
+
```text
|
80
|
+
magellan-cli team help [COMMAND]
|
81
|
+
```
|
82
|
+
|
83
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
84
|
+
|
@@ -0,0 +1,108 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: worker | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / worker <a href="/reference/en/resources/worker.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli worker list](#list)
|
10
|
+
- [magellan-cli worker show [ID]](#show)
|
11
|
+
- [magellan-cli worker select NAME](#select)
|
12
|
+
- [magellan-cli worker deselect](#deselect)
|
13
|
+
- [magellan-cli worker delete NAME](#delete)
|
14
|
+
- [magellan-cli worker create NAME IMAGE](#create)
|
15
|
+
- [magellan-cli worker update ATTRIBUTES](#update)
|
16
|
+
- [magellan-cli worker prepare_images](#prepare_images)
|
17
|
+
- [magellan-cli worker help [COMMAND]](#help)
|
18
|
+
|
19
|
+
## 共通オプション
|
20
|
+
|
21
|
+
```text
|
22
|
+
Options:
|
23
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
24
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
25
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
|
30
|
+
## コマンドの詳細
|
31
|
+
### <a name="list"></a>list
|
32
|
+
|
33
|
+
```text
|
34
|
+
magellan-cli worker list
|
35
|
+
```
|
36
|
+
|
37
|
+
workers の一覧を表示します
|
38
|
+
|
39
|
+
### <a name="show"></a>show
|
40
|
+
|
41
|
+
```text
|
42
|
+
magellan-cli worker show [ID]
|
43
|
+
```
|
44
|
+
|
45
|
+
IDで指定されたworkerの詳細を表示します
|
46
|
+
|
47
|
+
### <a name="select"></a>select
|
48
|
+
|
49
|
+
```text
|
50
|
+
magellan-cli worker select NAME
|
51
|
+
```
|
52
|
+
|
53
|
+
NAMEを指定してworkerを選択します
|
54
|
+
|
55
|
+
### <a name="deselect"></a>deselect
|
56
|
+
|
57
|
+
```text
|
58
|
+
magellan-cli worker deselect
|
59
|
+
```
|
60
|
+
|
61
|
+
workerの選択を解除します
|
62
|
+
|
63
|
+
### <a name="delete"></a>delete
|
64
|
+
|
65
|
+
```text
|
66
|
+
magellan-cli worker delete NAME
|
67
|
+
```
|
68
|
+
|
69
|
+
NAMEを指定してworkerを削除します
|
70
|
+
|
71
|
+
### <a name="create"></a>create
|
72
|
+
|
73
|
+
```text
|
74
|
+
magellan-cli worker create NAME IMAGE
|
75
|
+
```
|
76
|
+
|
77
|
+
```text
|
78
|
+
Options:
|
79
|
+
-A, [--attributes-yaml=ATTRIBUTES_YAML] # 属性を定義するYAMLファイルへのパス
|
80
|
+
|
81
|
+
```
|
82
|
+
|
83
|
+
NAMEとIMAGEを指定してworkerを登録します
|
84
|
+
|
85
|
+
### <a name="update"></a>update
|
86
|
+
|
87
|
+
```text
|
88
|
+
magellan-cli worker update ATTRIBUTES
|
89
|
+
```
|
90
|
+
|
91
|
+
選択したworkerの属性を指定したATTRIBUTESで更新します。ATTRIBUTESにはYAMLのファイル名かJSON文字列を指定可能です
|
92
|
+
|
93
|
+
### <a name="prepare_images"></a>prepare_images
|
94
|
+
|
95
|
+
```text
|
96
|
+
magellan-cli worker prepare_images
|
97
|
+
```
|
98
|
+
|
99
|
+
選択されたworkerのimagesを準備します
|
100
|
+
|
101
|
+
### <a name="help"></a>help
|
102
|
+
|
103
|
+
```text
|
104
|
+
magellan-cli worker help [COMMAND]
|
105
|
+
```
|
106
|
+
|
107
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
108
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: magellan-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- akm2000
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpclient
|
@@ -223,26 +223,32 @@ files:
|
|
223
223
|
- lib/magellan/cli/ssl.rb
|
224
224
|
- lib/magellan/cli/version.rb
|
225
225
|
- magellan-cli.gemspec
|
226
|
-
- reference/en/client_version.md
|
227
|
-
- reference/en/cloudsql.md
|
228
|
-
- reference/en/container.md
|
229
|
-
- reference/en/image.md
|
230
226
|
- reference/en/index.md
|
231
|
-
- reference/en/
|
232
|
-
- reference/en/
|
233
|
-
- reference/en/
|
234
|
-
- reference/en/
|
235
|
-
- reference/en/
|
236
|
-
- reference/
|
237
|
-
- reference/
|
238
|
-
- reference/
|
239
|
-
- reference/
|
227
|
+
- reference/en/messaging/http.md
|
228
|
+
- reference/en/messaging/mqtt.md
|
229
|
+
- reference/en/resources/authority.md
|
230
|
+
- reference/en/resources/client_version.md
|
231
|
+
- reference/en/resources/cloudsql.md
|
232
|
+
- reference/en/resources/container.md
|
233
|
+
- reference/en/resources/image.md
|
234
|
+
- reference/en/resources/organization.md
|
235
|
+
- reference/en/resources/project.md
|
236
|
+
- reference/en/resources/stage.md
|
237
|
+
- reference/en/resources/team.md
|
238
|
+
- reference/en/resources/worker.md
|
240
239
|
- reference/ja/index.md
|
241
|
-
- reference/ja/
|
242
|
-
- reference/ja/
|
243
|
-
- reference/ja/
|
244
|
-
- reference/ja/
|
245
|
-
- reference/ja/
|
240
|
+
- reference/ja/messaging/http.md
|
241
|
+
- reference/ja/messaging/mqtt.md
|
242
|
+
- reference/ja/resources/authority.md
|
243
|
+
- reference/ja/resources/client_version.md
|
244
|
+
- reference/ja/resources/cloudsql.md
|
245
|
+
- reference/ja/resources/container.md
|
246
|
+
- reference/ja/resources/image.md
|
247
|
+
- reference/ja/resources/organization.md
|
248
|
+
- reference/ja/resources/project.md
|
249
|
+
- reference/ja/resources/stage.md
|
250
|
+
- reference/ja/resources/team.md
|
251
|
+
- reference/ja/resources/worker.md
|
246
252
|
- spec/.magellan-cli.original
|
247
253
|
- spec/magellan/cli/Magellan.yml
|
248
254
|
- spec/magellan/cli/command_spec.rb
|