Skip to content

Commit d97fee7

Browse files
Remove some spurious log messages in osism_configuration
Signed-off-by: Tobias Wolf <[email protected]>
1 parent bc8a407 commit d97fee7

File tree

1 file changed

+0
-8
lines changed
  • src/rookify/modules/osism_configuration

1 file changed

+0
-8
lines changed

src/rookify/modules/osism_configuration/main.py

-8
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,11 @@ def _write_configuration_yaml(self) -> None:
7777
configuration_values["public_network"] = rook_config["ceph"][
7878
"public_network"
7979
]
80-
else:
81-
self.logger.warn(
82-
"Rook Ceph cluster will be configured without a public network and determine it automatically during runtime"
83-
)
8480

8581
if len(rook_config["ceph"].get("cluster_network", "")) > 0:
8682
configuration_values["cluster_network"] = rook_config["ceph"][
8783
"cluster_network"
8884
]
89-
else:
90-
self.logger.info(
91-
"Rook Ceph cluster will be configured without a cluster network"
92-
)
9385

9486
# Render cluster config from template
9587
configuration = self.load_template(

0 commit comments

Comments
 (0)