tripleo-ansible/tripleo_ansible/roles/octavia-controller-config/tasks/main.yml
Brent Eagles b94fb8e9d8 Scan existing controllers on update to pick up existing certs/private keys
Adds an octavia related role to pick up CA (cert and private key pairs)
and client certificate from controllers and modifies existing roles to
use them instead of generating new ones.

Depends-On: https://review.opendev.org/745529

Change-Id: I5c18a59bf11e3915ef5f88c1eb2af1b4713af35b
Co-Authored-By: Gregory Thiemonge <gthiemon@redhat.com>
Related-Bug: #1849548
Related-Bug: #1849550
(cherry picked from commit d3e7a42cda)
(cherry picked from commit 2e5be7b968)
2020-08-10 15:45:05 +02:00

29 lines
879 B
YAML

---
# Copyright 2020 Red Hat, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
- name: Set node name fact
set_fact:
node_hostname: "{{ canonical_hostname }}"
- include_tasks: certificate.yml
when:
- generate_certs | bool
- update_certs | bool
- include_tasks: netport.yml
- include_tasks: netinterface.yml
- include_tasks: octavia.yml