mirror of https://github.com/ceph/ceph-ansible.git
lint: skip the linter
Do not run the linter for these 3: * we use latest for pip docker-py package * for ssl keys this is a false positive since the inital command is a 'shell' it'll always change * for keystone, we must use shell since the with_items contains pipes Signed-off-by: Sébastien Han <seb@redhat.com>pull/3285/head
parent
55b071a114
commit
cfd60411bc
|
@ -45,6 +45,8 @@
|
||||||
pip:
|
pip:
|
||||||
name: docker-py
|
name: docker-py
|
||||||
state: latest
|
state: latest
|
||||||
|
tags:
|
||||||
|
- skip_ansible_lint
|
||||||
|
|
||||||
- name: install docker on debian
|
- name: install docker on debian
|
||||||
package:
|
package:
|
||||||
|
|
|
@ -40,6 +40,8 @@
|
||||||
run_once: True
|
run_once: True
|
||||||
when:
|
when:
|
||||||
- pem.changed
|
- pem.changed
|
||||||
|
tags:
|
||||||
|
- skip_ansible_lint
|
||||||
|
|
||||||
- name: copy crt file(s) to gateway nodes
|
- name: copy crt file(s) to gateway nodes
|
||||||
copy:
|
copy:
|
||||||
|
|
|
@ -29,3 +29,5 @@
|
||||||
with_items:
|
with_items:
|
||||||
- "openssl x509 -in /etc/keystone/ssl/certs/ca.pem -pubkey | certutil -d {{ radosgw_nss_db_path }} -A -n ca -t 'TCu,Cu,Tuw'"
|
- "openssl x509 -in /etc/keystone/ssl/certs/ca.pem -pubkey | certutil -d {{ radosgw_nss_db_path }} -A -n ca -t 'TCu,Cu,Tuw'"
|
||||||
- "openssl x509 -in /etc/keystone/ssl/certs/signing_cert.pem -pubkey | certutil -A -d {{ radosgw_nss_db_path }} -n signing_cert -t 'P,P,P'"
|
- "openssl x509 -in /etc/keystone/ssl/certs/signing_cert.pem -pubkey | certutil -A -d {{ radosgw_nss_db_path }} -n signing_cert -t 'P,P,P'"
|
||||||
|
tags:
|
||||||
|
- skip_ansible_lint
|
||||||
|
|
Loading…
Reference in New Issue