2017-07-20 15:04:10 +01:00
|
|
|
# Note the indentation here is required as it's joined
|
|
|
|
# to create a playbook in deploy-steps.j2
|
|
|
|
|
2017-05-03 17:12:55 +01:00
|
|
|
#####################################################
|
|
|
|
# Per step puppet configuration of the baremetal host
|
|
|
|
#####################################################
|
Fix ConfigDebug for puppet host runs
Before pike we used to be able to add -e environments/config-debug.yaml
and that would give us debug logs for puppet. With the move to ansible
running puppet we lost this feature.
Let's make sure that the old ConfigDebug variable still works with
the ansible playbook-based deploy steps. With this patch and ConfigDebug
set to true, we correctly get the puppet debug logs:
TASK [debug] *******************************************************************
ok: [localhost] => {
"(outputs.stderr|default('')).split('\n')|union(outputs.stdout_lines|default([]))": [
"Warning: Undefined variable 'deploy_config_name'; ",
" (file & line not available)",
"Warning: This method is deprecated, please use the stdlib validate_legacy function, with Stdlib::Compat::Bool. There is further documentation for validate_legacy function in the README. at [\"/etc/puppet/modules/ntp/manifests/init.pp\", 54]:[\"/etc/puppet/modules/tripleo/manifests/profile/base/time/ntp.pp\", 29]",
" (at /etc/puppet/modules/stdlib/lib/puppet/functions/deprecation.rb:25:in `deprecation')",
"Debug: Runtime environment: puppet_version=4.8.2, ruby_version=2.0.0, run_mode=user, default_encoding=UTF-8",
"Debug: Loading external facts from /etc/puppet/modules/openstacklib/facts.d",
"Debug: Loading external facts from /var/lib/puppet/facts.d",
....
Change-Id: Ia726fb8ca4a6f7bbbd7a1284d76ff42df6825d01
Closes-Bug: #1722752
2017-10-11 12:47:01 +02:00
|
|
|
- name: Set host puppet debugging fact string
|
|
|
|
set_fact:
|
|
|
|
host_puppet_config_debug: "--debug --verbose"
|
|
|
|
when: enable_debug|default(false)
|
2017-05-03 17:12:55 +01:00
|
|
|
- name: Write the config_step hieradata
|
2017-09-04 13:53:04 +01:00
|
|
|
copy: content="{{dict(step=step|int)|to_json}}" dest=/etc/puppet/hieradata/config_step.json force=true mode=0600
|
2017-09-14 10:08:07 -06:00
|
|
|
become: true
|
2017-05-03 17:12:55 +01:00
|
|
|
- name: Run puppet host configuration for step {{step}}
|
2017-06-09 18:03:50 +02:00
|
|
|
command: >-
|
Fix ConfigDebug for puppet host runs
Before pike we used to be able to add -e environments/config-debug.yaml
and that would give us debug logs for puppet. With the move to ansible
running puppet we lost this feature.
Let's make sure that the old ConfigDebug variable still works with
the ansible playbook-based deploy steps. With this patch and ConfigDebug
set to true, we correctly get the puppet debug logs:
TASK [debug] *******************************************************************
ok: [localhost] => {
"(outputs.stderr|default('')).split('\n')|union(outputs.stdout_lines|default([]))": [
"Warning: Undefined variable 'deploy_config_name'; ",
" (file & line not available)",
"Warning: This method is deprecated, please use the stdlib validate_legacy function, with Stdlib::Compat::Bool. There is further documentation for validate_legacy function in the README. at [\"/etc/puppet/modules/ntp/manifests/init.pp\", 54]:[\"/etc/puppet/modules/tripleo/manifests/profile/base/time/ntp.pp\", 29]",
" (at /etc/puppet/modules/stdlib/lib/puppet/functions/deprecation.rb:25:in `deprecation')",
"Debug: Runtime environment: puppet_version=4.8.2, ruby_version=2.0.0, run_mode=user, default_encoding=UTF-8",
"Debug: Loading external facts from /etc/puppet/modules/openstacklib/facts.d",
"Debug: Loading external facts from /var/lib/puppet/facts.d",
....
Change-Id: Ia726fb8ca4a6f7bbbd7a1284d76ff42df6825d01
Closes-Bug: #1722752
2017-10-11 12:47:01 +02:00
|
|
|
puppet apply {{ host_puppet_config_debug|default('') }}
|
2017-06-09 18:03:50 +02:00
|
|
|
--modulepath=/etc/puppet/modules:/opt/stack/puppet-modules:/usr/share/openstack-puppet/modules
|
2017-10-12 17:37:50 +02:00
|
|
|
--detailed-exitcodes
|
2017-07-27 13:59:04 -04:00
|
|
|
--logdest syslog --logdest console --color=false
|
2017-06-09 18:03:50 +02:00
|
|
|
/var/lib/tripleo-config/puppet_step_config.pp
|
2017-10-12 17:37:50 +02:00
|
|
|
changed_when: outputs.rc == 2
|
2017-06-09 18:03:50 +02:00
|
|
|
check_mode: no
|
|
|
|
register: outputs
|
|
|
|
failed_when: false
|
|
|
|
no_log: true
|
2017-09-14 10:08:07 -06:00
|
|
|
become: true
|
2017-06-09 18:03:50 +02:00
|
|
|
- debug: var=(outputs.stderr|default('')).split('\n')|union(outputs.stdout_lines|default([]))
|
|
|
|
when: outputs is defined
|
2017-10-12 17:37:50 +02:00
|
|
|
failed_when: outputs.rc not in [0, 2]
|
2017-05-03 17:12:55 +01:00
|
|
|
######################################
|
|
|
|
# Generate config via docker-puppet.py
|
|
|
|
######################################
|
|
|
|
- name: Run docker-puppet tasks (generate config)
|
|
|
|
shell: python /var/lib/docker-puppet/docker-puppet.py
|
|
|
|
environment:
|
|
|
|
NET_HOST: 'true'
|
2017-07-21 11:21:09 +01:00
|
|
|
DEBUG: '{{docker_puppet_debug|default(false)}}'
|
2017-08-25 23:01:24 -04:00
|
|
|
PROCESS_COUNT: '{{docker_puppet_process_count|default(3)}}'
|
2017-05-03 17:12:55 +01:00
|
|
|
when: step == "1"
|
|
|
|
changed_when: false
|
|
|
|
check_mode: no
|
2017-06-09 18:03:50 +02:00
|
|
|
register: outputs
|
|
|
|
failed_when: false
|
|
|
|
no_log: true
|
2017-09-14 10:08:07 -06:00
|
|
|
become: true
|
2017-06-09 18:03:50 +02:00
|
|
|
- debug: var=(outputs.stderr|default('')).split('\n')|union(outputs.stdout_lines|default([]))
|
|
|
|
when: outputs is defined
|
|
|
|
failed_when: outputs|failed
|
2017-05-03 17:12:55 +01:00
|
|
|
##################################################
|
|
|
|
# Per step starting of the containers using paunch
|
|
|
|
##################################################
|
2017-05-19 16:38:56 +01:00
|
|
|
- name: Check if /var/lib/hashed-tripleo-config/docker-container-startup-config-step_{{step}}.json exists
|
2017-05-03 17:12:55 +01:00
|
|
|
stat:
|
2017-05-19 16:38:56 +01:00
|
|
|
path: /var/lib/tripleo-config/hashed-docker-container-startup-config-step_{{step}}.json
|
2017-05-03 17:12:55 +01:00
|
|
|
register: docker_config_json
|
2017-09-14 10:08:07 -06:00
|
|
|
become: true
|
2017-05-19 16:38:56 +01:00
|
|
|
# Note docker-puppet.py generates the hashed-*.json file, which is a copy of
|
|
|
|
# the *step_n.json with a hash of the generated external config added
|
|
|
|
# This acts as a salt to enable restarting the container if config changes
|
2017-05-03 17:12:55 +01:00
|
|
|
- name: Start containers for step {{step}}
|
2017-06-09 18:03:50 +02:00
|
|
|
command: >-
|
|
|
|
paunch --debug apply
|
|
|
|
--file /var/lib/tripleo-config/hashed-docker-container-startup-config-step_{{step}}.json
|
|
|
|
--config-id tripleo_step{{step}} --managed-by tripleo-{{role_name}}
|
2017-05-03 17:12:55 +01:00
|
|
|
when: docker_config_json.stat.exists
|
|
|
|
changed_when: false
|
|
|
|
check_mode: no
|
2017-06-09 18:03:50 +02:00
|
|
|
register: outputs
|
|
|
|
failed_when: false
|
|
|
|
no_log: true
|
2017-09-14 10:08:07 -06:00
|
|
|
become: true
|
2017-06-09 18:03:50 +02:00
|
|
|
- debug: var=(outputs.stderr|default('')).split('\n')|union(outputs.stdout_lines|default([]))
|
|
|
|
when: outputs is defined
|
|
|
|
failed_when: outputs|failed
|
2017-05-03 17:12:55 +01:00
|
|
|
########################################################
|
|
|
|
# Bootstrap tasks, only performed on bootstrap_server_id
|
|
|
|
########################################################
|
2017-07-19 20:36:11 +01:00
|
|
|
- name: Check if /var/lib/docker-puppet/docker-puppet-tasks{{step}}.json exists
|
|
|
|
stat:
|
|
|
|
path: /var/lib/docker-puppet/docker-puppet-tasks{{step}}.json
|
|
|
|
register: docker_puppet_tasks_json
|
2017-09-14 10:08:07 -06:00
|
|
|
become: true
|
2017-05-03 17:12:55 +01:00
|
|
|
- name: Run docker-puppet tasks (bootstrap tasks)
|
|
|
|
shell: python /var/lib/docker-puppet/docker-puppet.py
|
|
|
|
environment:
|
|
|
|
CONFIG: /var/lib/docker-puppet/docker-puppet-tasks{{step}}.json
|
|
|
|
NET_HOST: "true"
|
|
|
|
NO_ARCHIVE: "true"
|
|
|
|
STEP: "{{step}}"
|
2017-07-19 20:36:11 +01:00
|
|
|
when: deploy_server_id == bootstrap_server_id and docker_puppet_tasks_json.stat.exists
|
2017-05-03 17:12:55 +01:00
|
|
|
changed_when: false
|
|
|
|
check_mode: no
|
2017-06-09 18:03:50 +02:00
|
|
|
register: outputs
|
|
|
|
failed_when: false
|
|
|
|
no_log: true
|
2017-09-14 10:08:07 -06:00
|
|
|
become: true
|
2017-06-09 18:03:50 +02:00
|
|
|
- debug: var=(outputs.stderr|default('')).split('\n')|union(outputs.stdout_lines|default([]))
|
|
|
|
when: outputs is defined
|
|
|
|
failed_when: outputs|failed
|