blob: 912d515d909c02d723b431535e0badf44398c546 [file] [log] [blame]
okozachenko0c48e9c2022-05-19 01:57:57 +10001# Copyright (c) 2022 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
15- name: Generate OpenStack-Helm endpoints
16 ansible.builtin.include_role:
17 name: openstack_helm_endpoints
18 vars:
19 openstack_helm_endpoints_list: ["identity"]
20
21- name: Install openstacksdk
22 ansible.builtin.pip:
23 name: openstacksdk
24
25- name: Create openstack config directory
26 become: true
27 ansible.builtin.file:
28 path: /etc/openstack
29 state: directory
30 owner: root
31 group: root
32
33- name: Generate cloud config file
34 become: true
35 ansible.builtin.template:
36 src: clouds.yaml.j2
37 dest: /etc/openstack/clouds.yaml
38 owner: root
39 group: root
40 mode: '0600'