Skip to content

Commit

Permalink
Use collection as prefix for collections (#1013)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Berendt <[email protected]>
  • Loading branch information
berendt committed Aug 23, 2024
1 parent 4e60333 commit 007c3ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions osism/commands/apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,7 @@ def handle_collection(
)
if t:
t.apply_async()
if dry_run:
logger.info("Dry run. No tasks are running in the background")
else:
if not dry_run:
logger.info(
f"All tasks of the collection {collection} are prepared for execution"
)
Expand Down
10 changes: 5 additions & 5 deletions osism/core/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
],
],
],
"all-infrastructure": [
"collection-infrastructure": [
"openstackclient",
"phpmyadmin",
[
Expand All @@ -196,10 +196,10 @@
],
],
],
"all-kubernetes": [
"collection-kubernetes": [
["kubernetes", ["kubeconfig", ["copy-kubeconfig"]]],
],
"all-openstack": [
"collection-openstack": [
"horizon",
[
"keystone",
Expand All @@ -218,7 +218,7 @@
],
],
],
"all-ceph": [
"collection-ceph": [
[
"ceph",
[
Expand All @@ -229,7 +229,7 @@
],
],
],
"all-monitoring": [
"collection-monitoring": [
["prometheus", ["grafana"]],
"netdata",
],
Expand Down

0 comments on commit 007c3ab

Please sign in to comment.