This repository was archived by the owner on Oct 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
frameworks/cassandra/src/main/dist Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def configure_universe(tmpdir_factory):
76
76
77
77
@pytest .fixture (scope = "session" , autouse = True )
78
78
def configure_external_volumes ():
79
- if is_env_var_set ("EXTERNAL_VOLUMES_ENABLED " , default = "" ):
79
+ if is_env_var_set ("ENABLE_EXTERNAL_VOLUMES " , default = "" ):
80
80
yield from sdk_external_volumes .external_volumes_session ()
81
81
else :
82
82
yield
Original file line number Diff line number Diff line change @@ -103,14 +103,12 @@ pods:
103
103
port : {{SECURE_JMX_RMI_PORT}}
104
104
{{/TASKCFG_ALL_SECURE_JMX_ENABLED}}
105
105
sidecar-resources :
106
- cpus : 0.01
106
+ cpus : 1
107
107
memory : 1024
108
108
tasks :
109
109
server :
110
110
goal : RUNNING
111
111
resource-set : server-resources
112
- resource-limits :
113
- cpus : unlimited
114
112
cmd : |
115
113
set -e
116
114
Original file line number Diff line number Diff line change @@ -94,13 +94,12 @@ dind="false"
94
94
interactive=" false"
95
95
package_registry=" false"
96
96
disable_diag_collect=" false"
97
- enable_external_volumes=" false "
97
+ enable_external_volumes=" true "
98
98
docker_options=" ${DOCKER_OPTIONS:= } "
99
99
docker_command=" ${DOCKER_COMMAND:= bash ${WORK_DIR} / tools/ ci/ test_runner.sh ${WORK_DIR} } "
100
100
docker_image=" ${DOCKER_IMAGE:- mesosphere/ dcos-commons: latest} "
101
101
env_passthrough=
102
102
env_file_input=
103
- external_volumes_enabed=false
104
103
105
104
# ###############################################################################
106
105
# ############################### CLI usage #####################################
@@ -274,6 +273,9 @@ while [[ ${#} -gt 0 ]]; do
274
273
--enable-external-volumes)
275
274
enable_external_volumes=" true"
276
275
;;
276
+ --disable-external-volumes)
277
+ enable_external_volumes=" false"
278
+ ;;
277
279
--dcos-files-path)
278
280
if [[ ! -d " ${2} " ]]; then echo " Directory not found: ${arg} ${2} " ; exit 1; fi
279
281
# Resolve abs path:
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ def configure_cli(
186
186
# Attach to cluster via CLI
187
187
dcos_run_cli ("cluster attach {}" .format (cluster_name ))
188
188
dcos_run_cli (
189
- "cluster setup --no-check {} --username {} --password {}" .format (
189
+ "cluster setup --insecure -- no-check {} --username {} --password {}" .format (
190
190
dcosurl , dcos_login_username , dcos_login_password
191
191
)
192
192
)
You can’t perform that action at this time.
0 commit comments