blob: f6f4aafb99621c7b1b5f19a020362ab6027d3ea1 [file] [log] [blame]
okozachenko43771bd2022-04-30 01:22:46 +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
okozachenko43771bd2022-04-30 01:22:46 +100015- name: Deploy Helm chart
guilhermesteinmuller6f99fc52023-01-24 17:41:53 +000016 run_once: true
17 kubernetes.core.helm:
Mohammed Naser2145fc32023-01-29 23:23:03 +000018 name: "{{ barbican_helm_release_name }}"
19 chart_ref: "{{ barbican_helm_chart_ref }}"
20 release_namespace: "{{ barbican_helm_release_namespace }}"
guilhermesteinmuller6f99fc52023-01-24 17:41:53 +000021 create_namespace: true
22 kubeconfig: /etc/kubernetes/admin.conf
Mohammed Naser2145fc32023-01-29 23:23:03 +000023 values: "{{ _barbican_helm_values | combine(barbican_helm_values, recursive=True) }}"
okozachenko43771bd2022-04-30 01:22:46 +100024
25- name: Create Ingress
26 ansible.builtin.include_role:
27 name: openstack_helm_ingress
28 vars:
Julian Poss0aad3332022-05-18 09:37:20 +000029 openstack_helm_ingress_endpoint: key_manager
okozachenko43771bd2022-04-30 01:22:46 +100030 openstack_helm_ingress_service_name: barbican-api
31 openstack_helm_ingress_service_port: 9311
Mohammed Naser2145fc32023-01-29 23:23:03 +000032 openstack_helm_ingress_annotations: "{{ barbican_ingress_annotations }}"
Michiel Piscaer86248232024-04-21 08:53:50 +020033
34- name: Create creator role
35 openstack.cloud.identity_role:
36 cloud: atmosphere
37 state: present
38 name: creator
39
40- name: Add implied roles
41 run_once: true
42 ansible.builtin.shell: |
Tadas Sutkaitis7a286582024-05-01 02:12:08 +030043 set -o posix
44 source /etc/profile.d/atmosphere.sh
Michiel Piscaer86248232024-04-21 08:53:50 +020045 openstack implied role create \
46 --implied-role {{ item.implies }} \
47 {{ item.role }}
Tadas Sutkaitis7a286582024-05-01 02:12:08 +030048 args:
49 executable: /bin/bash
Michiel Piscaer86248232024-04-21 08:53:50 +020050 loop:
51 - role: member
52 implies: creator
53 environment:
54 OS_CLOUD: atmosphere
55 register: _octavia_implied_role_create
56 changed_when: _octavia_implied_role_create.rc == 0
57 failed_when: _octavia_implied_role_create.rc != 0 and 'Duplicate entry.' not in _octavia_implied_role_create.stderr
vexxhost-bot0c1bdf92024-06-20 14:17:20 +020058 retries: 10
59 delay: 1
60 until: _octavia_implied_role_create.rc == 0 or 'Duplicate entry.' in _octavia_implied_role_create.stderr