benchmark-runner 1.0.728__py3-none-any.whl → 1.0.730__py3-none-any.whl
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.
Potentially problematic release.
This version of benchmark-runner might be problematic. Click here for more details.
- benchmark_runner/common/ocp_resources/create_nhc_snr.py +3 -4
- benchmark_runner/common/ocp_resources/nhc_snr/template/04_snr_subscription_template.yaml +11 -0
- {benchmark_runner-1.0.728.dist-info → benchmark_runner-1.0.730.dist-info}/METADATA +1 -1
- {benchmark_runner-1.0.728.dist-info → benchmark_runner-1.0.730.dist-info}/RECORD +9 -8
- /benchmark_runner/common/ocp_resources/nhc_snr/template/{03_subscription_template.yaml → 03_nhc_subscription_template.yaml} +0 -0
- /benchmark_runner/common/ocp_resources/nhc_snr/template/{04_nhc_snr_template.yaml → 05_nhc_snr_template.yaml} +0 -0
- {benchmark_runner-1.0.728.dist-info → benchmark_runner-1.0.730.dist-info}/LICENSE +0 -0
- {benchmark_runner-1.0.728.dist-info → benchmark_runner-1.0.730.dist-info}/WHEEL +0 -0
- {benchmark_runner-1.0.728.dist-info → benchmark_runner-1.0.730.dist-info}/top_level.txt +0 -0
|
@@ -26,16 +26,15 @@ class CreateNHCSNR(CreateOCPResourceOperations):
|
|
|
26
26
|
logger.info(f'run {resource}')
|
|
27
27
|
self.__oc.create_async(yaml=os.path.join(self.__path, resource))
|
|
28
28
|
|
|
29
|
-
if '
|
|
30
|
-
# verify once after create all resource files
|
|
29
|
+
if '03_nhc_subscription.yaml' in resource:
|
|
31
30
|
self.wait_for_ocp_resource_create(operator='nhc',
|
|
32
31
|
verify_cmd="oc get csv -n openshift-workload-availability -o jsonpath='{.items[0].status.phase}'",
|
|
33
32
|
status='Succeeded')
|
|
33
|
+
if '04_snr_subscription.yaml' in resource:
|
|
34
34
|
self.wait_for_ocp_resource_create(operator='snr',
|
|
35
35
|
verify_cmd="oc get csv -n openshift-workload-availability -o jsonpath='{.items[1].status.phase}'",
|
|
36
36
|
status='Succeeded')
|
|
37
|
-
|
|
38
|
-
if '04_nhc_snr.yaml' in resource:
|
|
37
|
+
if '05_nhc_snr.yaml' in resource:
|
|
39
38
|
# Verify NHC is enabled
|
|
40
39
|
self.wait_for_ocp_resource_create(operator='nhc',
|
|
41
40
|
verify_cmd="oc get nhc -A -o jsonpath='{range .items[*]}{.status.phase}{\"\\n\"}{end}'",
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
apiVersion: operators.coreos.com/v1alpha1
|
|
2
|
+
kind: Subscription
|
|
3
|
+
metadata:
|
|
4
|
+
name: self-node-remediation-operator
|
|
5
|
+
namespace: openshift-workload-availability
|
|
6
|
+
spec:
|
|
7
|
+
channel: stable
|
|
8
|
+
installPlanApproval: Automatic
|
|
9
|
+
name: self-node-remediation
|
|
10
|
+
source: redhat-operators
|
|
11
|
+
sourceNamespace: openshift-marketplace
|
|
@@ -53,7 +53,7 @@ benchmark_runner/common/ocp_resources/create_cnv.py,sha256=AXsyR8_g_RIFHz2rkyHzz
|
|
|
53
53
|
benchmark_runner/common/ocp_resources/create_custom.py,sha256=rthm96yDzI-Hke54hLWTs0O3gDtpQPR6n184ehaEevo,1029
|
|
54
54
|
benchmark_runner/common/ocp_resources/create_kata.py,sha256=IhfnDHj0lLUVENA-Nh9BucSAt0BqL8mtqT6QloMzIDg,3721
|
|
55
55
|
benchmark_runner/common/ocp_resources/create_lso.py,sha256=anrLu2NymdxE7LkJ9fytqmhkysq7hVLOYBVxjfFlmVE,1634
|
|
56
|
-
benchmark_runner/common/ocp_resources/create_nhc_snr.py,sha256=
|
|
56
|
+
benchmark_runner/common/ocp_resources/create_nhc_snr.py,sha256=ejbX-KhkvqU9SCEX1-tA7xiZRXe5bsSAQoyyjMC15IU,1991
|
|
57
57
|
benchmark_runner/common/ocp_resources/create_ocp_resource.py,sha256=ik0lotwiuECRDCbPYfDpi2Q_qjhtc2XDCR9zbY_Z9V0,5504
|
|
58
58
|
benchmark_runner/common/ocp_resources/create_ocp_resource_exceptions.py,sha256=hthowyHAeg66IZHYPe1FWU3dnhwXcQtPBrOQSO1RZMU,941
|
|
59
59
|
benchmark_runner/common/ocp_resources/create_ocp_resource_operations.py,sha256=47SyVjtv5e9vKuRQFlC-VfGKXBLEl46rut4XVeZRsMo,6834
|
|
@@ -73,8 +73,9 @@ benchmark_runner/common/ocp_resources/lso/template/03_catalogsource_template.yam
|
|
|
73
73
|
benchmark_runner/common/ocp_resources/lso/template/04_subscription_template.yaml,sha256=n3D8CYQBNOIzdjwuSFXVxWuuR_HW5uvA0oP69ORHLIM,413
|
|
74
74
|
benchmark_runner/common/ocp_resources/nhc_snr/template/01_namespace_template.yaml,sha256=nOhhszaaJ0FAS8ke8DgGHXaa-hPqDoWRFyK1fSJkUVA,81
|
|
75
75
|
benchmark_runner/common/ocp_resources/nhc_snr/template/02_operator_group_template.yaml,sha256=WM4DWIcADQ7QhRSGMOG58GDo7bWBwFKDMFqKhv3oPWE,156
|
|
76
|
-
benchmark_runner/common/ocp_resources/nhc_snr/template/
|
|
77
|
-
benchmark_runner/common/ocp_resources/nhc_snr/template/
|
|
76
|
+
benchmark_runner/common/ocp_resources/nhc_snr/template/03_nhc_subscription_template.yaml,sha256=fPBon9WfLYbRMZKC4DIBrnaDxAT1GwDvzvbiHhoSJn0,314
|
|
77
|
+
benchmark_runner/common/ocp_resources/nhc_snr/template/04_snr_subscription_template.yaml,sha256=gpcEbR7msWnYwzENiBs-Raw7Yf3QGrVPrfPLkVqcoPw,310
|
|
78
|
+
benchmark_runner/common/ocp_resources/nhc_snr/template/05_nhc_snr_template.yaml,sha256=Z7_yCYvo0S40MykQp5ygUrZ8MkZooyfTPgo_9TdTZlQ,1069
|
|
78
79
|
benchmark_runner/common/ocp_resources/odf/template/01_delete_disks_template.sh,sha256=NaPyYa8777IGa6SPvWSw_gCKBIt6yTHLEFWS-Yo3EJk,174
|
|
79
80
|
benchmark_runner/common/ocp_resources/odf/template/02_label_nodes_template.sh,sha256=P4O_3zud56UuVbYgBRGlm4nh9m4Ju9jfZ2YIoKloaEE,206
|
|
80
81
|
benchmark_runner/common/ocp_resources/odf/template/03_local_volume_discovery_template.yaml,sha256=WjZekDSj-1x8xpL85EY-6dUUCW-nkmb9GP6NyePIhBU,347
|
|
@@ -171,8 +172,8 @@ benchmark_runner/workloads/windows_vm.py,sha256=eHK79ueAkSlNC1uamz19o7CO20wzJi-U
|
|
|
171
172
|
benchmark_runner/workloads/workloads.py,sha256=F9fnk4h715tq7ANSCbDH0jktB8fpr_u3YG61Kdi5_os,1422
|
|
172
173
|
benchmark_runner/workloads/workloads_exceptions.py,sha256=u7VII95iPRF_YhfpGH1U1RmgiIYESMOtbSF1dz7_ToE,1858
|
|
173
174
|
benchmark_runner/workloads/workloads_operations.py,sha256=zhMAL-Zc2JtdI-LG4kxGwbGwHaLY2DfklpzM4bBG-eo,25261
|
|
174
|
-
benchmark_runner-1.0.
|
|
175
|
-
benchmark_runner-1.0.
|
|
176
|
-
benchmark_runner-1.0.
|
|
177
|
-
benchmark_runner-1.0.
|
|
178
|
-
benchmark_runner-1.0.
|
|
175
|
+
benchmark_runner-1.0.730.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
176
|
+
benchmark_runner-1.0.730.dist-info/METADATA,sha256=WNxNt8-Nmkrnnl6YWmNlG-OmWKqWTrW5RFjZXjx65Ps,11498
|
|
177
|
+
benchmark_runner-1.0.730.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
178
|
+
benchmark_runner-1.0.730.dist-info/top_level.txt,sha256=MP7UbTCzu59D53uKCZl5VsQeM_vheyMc7FmryczJQbk,17
|
|
179
|
+
benchmark_runner-1.0.730.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|