c12s-kubespray/inventory/sample/group_vars/k8s-cluster
Hoat Le c7c3effd6f Ansible var should be quoted (#3393)
to fix the follow problem in case quote is not used:

PLAY [k8s-cluster:etcd:calico-rr] **********************************************
ERROR! Syntax Error while loading YAML.
  expected <block end>, but found '<scalar>'

The error appears to have been in '/tmp/vagrant-ansible/inventory/group_vars/k8s-cluster.yml': line 59, column 39, but may
be elsewhere in the file depending on the exact syntax problem.

The offending line appears to be:

kube_oidc_ca_file: {{ kube_cert_dir }}/openid-ca.pem
                                      ^ here
We could be wrong, but this one looks like it might be an issue with
missing quotes.  Always quote template expression brackets when they
start a value. For instance:

    with_items:
      - {{ foo }}

Should be written as:

    with_items:
      - "{{ foo }}"

Ansible failed to complete successfully. Any error output should be
visible above. Please fix these errors and try again.
2018-09-25 23:35:35 -07:00
..
addons.yml Replaces nonexisting system_namespace variable (#3389) 2018-09-25 01:39:02 -07:00
k8s-cluster.yml Ansible var should be quoted (#3393) 2018-09-25 23:35:35 -07:00
k8s-net-calico.yml move calico options from all.yml to k8s-cluster/k8s-net-calico.yml 2018-09-18 21:30:49 +03:00
k8s-net-canal.yml create separate options files for network plugins 2018-09-18 14:29:53 +03:00
k8s-net-cilium.yml create separate options files for network plugins 2018-09-18 14:29:53 +03:00
k8s-net-contiv.yml create separate options files for network plugins 2018-09-18 14:29:53 +03:00
k8s-net-flannel.yml create separate options files for network plugins 2018-09-18 14:29:53 +03:00
k8s-net-weave.yml create separate options files for network plugins 2018-09-18 14:29:53 +03:00