Hi,
This syntax works to override the var "service_mesh" when we execute this ansible playbook command
"ansible-playbook -i inventory/cloud_host playbook/post_installation.yml -e service_mesh=true"
but the var is not set to true if thethis var is defined within a extra_vars.yml file and the following command executed
"ansible-playbook -i inventory/cloud_host playbook/post_installation.yml -e @extra_vars.yml"
Snapshot of the extra_vars.yml file
---
# Global vars
openshift_node: masters
infra_project: infra
target_platform: local
experimental_features: disable
service_mesh: true
Do I miss something ?
Regards
Charles