浏览代码

add ansible.cfg, fix collection naming

Grega Bremec 4 月之前
父节点
当前提交
e3888b5e51
共有 2 个文件被更改,包括 13 次插入1 次删除
  1. 12 0
      ansible.cfg
  2. 1 1
      pre-flight.yml

+ 12 - 0
ansible.cfg

@@ -0,0 +1,12 @@
+[defaults]
+# required to evade implicit conversion to string in k8s resource_definition
+jinja2_native = True
+inventory = ./inventory.yml
+remote_user = student
+ask_pass = no
+
+[privilege_escalation]
+become = no
+become_method = sudo
+become_askpass = no
+

+ 1 - 1
pre-flight.yml

@@ -6,6 +6,6 @@
   roles:
     - role: check-env
       tags: check
-    - role: fix-operators
+    - role: p0f.operators.fix-operators
       tags: fix
 ...