blob: 2f143a0777466874d82699edba5be12987d288fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
---
- name: Create Application helm charts directory
file:
path: "{{ app_helm_charts_install_directory }}"
state: directory
delegate_to: localhost
- name: Create Makefile to simulate helm charts dir and make building
copy:
content: |
all:
onap:
dest: "{{ app_helm_charts_install_directory }}/Makefile"
delegate_to: localhost
when: simulate_helm
- name: Clean previous simulation output file
file:
path: "{{ helm_simulation_output_file }}"
state: absent
- name: simulate helm binary
copy:
content: |
#!/bin/bash
echo "$@" >> {{ helm_simulation_output_file }}
dest: "{{ helm_bin_dir }}/helm"
mode: 0755
when: simulate_helm
- name: Install make
package:
name: make
state: present
- name: Create local certs dir for dummy certs
file:
path: certs
state: directory
delegate_to: localhost
- name: Create dummy cert file to simulate offline server certificates in helm install with override.yml file
copy:
content: |
this is dummy server certificate value
dest: certs/rootCA.crt
delegate_to: localhost
|