Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
  • Loading branch information
Lawouach committed Nov 13, 2023
1 parent 95f72a9 commit baef432
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

## [Unreleased][]

[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-kubernetes/compare/0.33.0...HEAD
[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-kubernetes/compare/0.34.0...HEAD

## [0.34.0][] - 2023-11-13

[0.34.0]: https://github.com/chaostoolkit/chaostoolkit-kubernetes/compare/0.33.0...0.34.0

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion chaosk8s/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from logzero import logger

__all__ = ["create_k8s_api_client", "discover", "__version__"]
__version__ = "0.33.0"
__version__ = "0.34.0"


def get_config_path() -> str:
Expand Down
6 changes: 4 additions & 2 deletions chaosk8s/node/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ def create_node(
return res


def cordon_node(name: str = None, label_selector: str = None, secrets: Secrets = None) -> List[str]:
def cordon_node(
name: str = None, label_selector: str = None, secrets: Secrets = None
) -> List[str]:
"""
Cordon nodes matching the given label or name, so that no pods
are scheduled on them any longer.
Expand All @@ -214,7 +216,7 @@ def cordon_node(name: str = None, label_selector: str = None, secrets: Secrets =
raise ActivityFailed(
f"Failed to unschedule node '{n.metadata.name}': {x.body}"
)

return cordoned


Expand Down

0 comments on commit baef432

Please sign in to comment.