Skip to content

Commit a593d5e

Browse files
author
sonu kumar meena
committed
removed yaml shorthand
1 parent bff80d2 commit a593d5e

2 files changed

Lines changed: 47 additions & 22 deletions

File tree

Lines changed: 43 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,52 @@
11
---
2-
<<: &profile_options
3-
url:
4-
description: "URL of the JIRA instance (e.g. ``https://myproject.atlassian.net``)"
5-
type: "string"
6-
secret: false
7-
required: true
8-
verify:
9-
description: "Verify SSL certificate. Set to False to disable verification. Default True"
10-
type: boolean
11-
default: True
12-
user:
13-
description: "username"
14-
type: "string"
15-
secret: false
16-
required: false
17-
password:
18-
description: "Password"
19-
type: "string"
20-
secret: true
21-
required: false
2+
url:
3+
description: "URL of the nexus3 instance (e.g. ``http://localhost:8081``)"
4+
type: "string"
5+
secret: false
6+
required: true
7+
position: 0
8+
verify:
9+
description: "verify TLS, only used if the ``url`` option specifies an ``HTTPS`` connection"
10+
type: boolean
11+
position: 1
12+
default: True
13+
user:
14+
description: "Username"
15+
type: "string"
16+
secret: false
17+
required: false
18+
position: 2
19+
password:
20+
description: "Password"
21+
type: "string"
22+
secret: true
23+
required: false
24+
position: 3
2225
profiles:
23-
description: "Nexus3 Connection profile."
26+
description: "Nexus3 Connection profile name. This will use above options as"
2427
type: object
2528
required: false
2629
properties: {}
2730
additionalProperties:
2831
type: object
2932
additionalProperties: false
3033
properties:
31-
<<: *profile_options
34+
url:
35+
description: "URL of the JIRA instance (e.g. ``https://myproject.atlassian.net``)"
36+
type: "string"
37+
secret: false
38+
required: true
39+
verify:
40+
description: "verify TLS, only used if the ``url`` option specifies an ``HTTPS`` connection"
41+
type: boolean
42+
default: True
43+
user:
44+
description: "Username"
45+
type: "string"
46+
secret: false
47+
required: false
48+
password:
49+
description: "Password"
50+
type: "string"
51+
secret: true
52+
required: false

stackstorm-nexus3/tests/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ reload:
4343
echo "=================== Running st2ctl reload"
4444
st2ctl reload --register-all
4545

46+
restart:
47+
echo "=================== Running st2ctl restart"
48+
st2ctl restart
49+
4650
sync:
4751
LOCAL_NEXUS_DIR=$$PWD; \
4852
ST2_PACK_DIR='/opt/stackstorm/packs'; \

0 commit comments

Comments
 (0)