Skip to content

Commit

Permalink
Merge pull request #144 from nocturnalastro/fix_has_workers_crucible
Browse files Browse the repository at this point in the history
Remove trailing space which was breaking the use of has_workers in create_cluster
  • Loading branch information
nocturnalastro authored Jan 25, 2024
2 parents 471d623 + b009990 commit 62372c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/create_cluster/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ single_node_openshift_enabled: "{{ is_valid_single_node_openshift_config | defau
# 2. 'Full' (otherwise)
# Requires at least three master nodes for High Availability.
high_availability_mode: "{{ single_node_openshift_enabled | ternary('none', 'full') }}"
has_workers: "{{ (groups['workers'] | default([])) | length > 0 }} "
has_workers: "{{ (groups['workers'] | default([])) | length > 0 }}"

create_body_extras: {}
cluster_id_filename: "cluster.txt" # This default is for backwards compatability

0 comments on commit 62372c1

Please sign in to comment.