Skip to content

Commit

Permalink
Merge branch 'main' into fix/98-keyerror-in-migrate-rgws
Browse files Browse the repository at this point in the history
  • Loading branch information
NotTheEvilOne committed Nov 11, 2024
2 parents bf43aa5 + 628159f commit f114984
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/on-release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,3 @@ jobs:
python -m build .
- name: Publish package
uses: pypa/gh-action-pypi-publish@v1
with:
user: __token__
password: ${{ secrets.PYPI_PROD_PASSWORD }}
8 changes: 0 additions & 8 deletions src/rookify/modules/osism_configuration/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,11 @@ def _write_configuration_yaml(self) -> None:
configuration_values["public_network"] = rook_config["ceph"][
"public_network"
]
else:
self.logger.warn(
"Rook Ceph cluster will be configured without a public network and determine it automatically during runtime"
)

if len(rook_config["ceph"].get("cluster_network", "")) > 0:
configuration_values["cluster_network"] = rook_config["ceph"][
"cluster_network"
]
else:
self.logger.info(
"Rook Ceph cluster will be configured without a cluster network"
)

# Render cluster config from template
configuration = self.load_template(
Expand Down

0 comments on commit f114984

Please sign in to comment.