File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,17 @@ class OpenSearch extends BaseService
25
25
'prompt ' => 'Disable security plugin (true or false)? ' ,
26
26
'default ' => 'true ' ,
27
27
],
28
+ [
29
+ 'shortname ' => 'password ' ,
30
+ 'prompt ' => 'What is the initial admin password? ' ,
31
+ 'default ' => 'admin ' ,
32
+ ],
28
33
];
29
34
30
35
protected $ dockerRunTemplate = '-p "${:port}":9200 \
31
36
-p "${:analyzer_port}":9600 \
32
37
-e DISABLE_SECURITY_PLUGIN="${:disable_security}" \
38
+ -e OPENSEARCH_INITIAL_ADMIN_PASSWORD="${:password}" \
33
39
-e "discovery.type=single-node" \
34
40
-v "${:volume}":/usr/share/opensearch/data \
35
41
"${:organization}"/"${:image_name}":"${:tag}" ' ;
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ function it_sorts_the_versions_naturally()
49
49
$ tags = collect ($ dockerTags ->getTags ());
50
50
51
51
$ this ->assertEquals ('latest ' , $ tags ->shift ());
52
- $ this ->assertEquals ('17.2 ' , $ tags ->shift ());
52
+ $ this ->assertEquals ('17.4 ' , $ tags ->shift ());
53
53
}
54
54
55
55
/**
You can’t perform that action at this time.
0 commit comments