Browse Source

fix test if openstack_cacert is a base64 string (#6371)

release-2.12 v2.12.9
Mario Bris 4 years ago
committed by GitHub
parent
commit
2acc5a75ac
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubernetes/node/tasks/main.yml

2
roles/kubernetes/node/tasks/main.yml

@ -189,7 +189,7 @@
- name: Test if openstack_cacert is a base64 string
set_fact:
openstack_cacert_is_base64: "{% if openstack_cacert | b64decode %}true{% else %}false{% endif %}"
openstack_cacert_is_base64: "{% if openstack_cacert | search ('^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)?$') %}true{% else %}false{% endif %}"
when:
- cloud_provider is defined
- cloud_provider == 'openstack'

Loading…
Cancel
Save