Skip to content

Commit 211954b

Browse files
[integ-tests] Remove using devsettings to disable in_place_update_on_fleet in OSU test
This commit prepares OSU test for validating the long term fix
1 parent ecb30ee commit 211954b

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

tests/integration-tests/tests/performance_tests/test_osu.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
# or in the "LICENSE.txt" file accompanying this file.
1010
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied.
1111
# See the License for the specific language governing permissions and limitations under the License.
12-
import json
1312
import logging
1413
import re
1514

@@ -33,12 +32,10 @@
3332

3433

3534
@pytest.mark.usefixtures("serial_execution_by_instance")
36-
@pytest.mark.parametrize("in_place_update_on_fleet_enabled", ["true", "false"])
3735
def test_osu(
3836
os,
3937
region,
4038
scheduler,
41-
in_place_update_on_fleet_enabled,
4239
instance,
4340
pcluster_config_reader,
4441
clusters_factory,
@@ -64,9 +61,6 @@ def test_osu(
6461
capacity_reservation_id = None
6562
placement_group_enabled = True
6663

67-
chef_attributes_dict = {"cluster": {"in_place_update_on_fleet_enabled": in_place_update_on_fleet_enabled}}
68-
extra_chef_attributes = json.dumps(chef_attributes_dict)
69-
7064
if instance in ["p6-b200.48xlarge", "p5en.48xlarge"]:
7165
max_queue_size = 2
7266
capacity_type = "CAPACITY_BLOCK"
@@ -88,7 +82,6 @@ def test_osu(
8882
capacity_type=capacity_type,
8983
capacity_reservation_id=capacity_reservation_id,
9084
placement_group_enabled=placement_group_enabled,
91-
extra_chef_attributes=extra_chef_attributes,
9285
)
9386
cluster = clusters_factory(cluster_config)
9487
remote_command_executor = RemoteCommandExecutor(cluster)

tests/integration-tests/tests/performance_tests/test_osu/test_osu/pcluster.config.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,3 @@ SharedStorage:
4040
- MountDir: /shared
4141
Name: name1
4242
StorageType: Ebs
43-
DevSettings:
44-
Cookbook:
45-
ExtraChefAttributes: '{{ extra_chef_attributes }}'

0 commit comments

Comments
 (0)