4cdf71f5a1
Adds a Zuul job to perform deployment of an OpenStack control plane consisting of a single node. Currently no tests are run against the resulting control plane. Change-Id: I2728421cb5dbd1dc370a3aa7d37d913c90ba38a5 Story: #2001655 Task: #6682
18 lines
375 B
YAML
18 lines
375 B
YAML
---
|
|
- name: Ensure node log directory exists
|
|
file:
|
|
path: "{{ kayobe_diagnostics_log_dir }}"
|
|
state: "directory"
|
|
|
|
- name: Ensure node log subdirectories exist
|
|
file:
|
|
path: "{{ kayobe_diagnostics_log_dir }}/{{ item }}"
|
|
state: "directory"
|
|
mode: 0777
|
|
with_items:
|
|
- "docker_logs"
|
|
- "kolla_configs"
|
|
- "system_logs"
|
|
- "kolla"
|
|
- "ansible"
|