Added seed code for caas-lcm.
[ta/caas-lcm.git] / deploy / roles / list_application_packages / tasks / list_application_packages.yml
1 ---
2 # Copyright 2019 Nokia
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 - name: list application packages
17   user: cloudadmin
18   hosts: "{{ groups.caas_master[0] | default('nowhere') }}"
19   connection: local
20   gather_facts: "False"
21   tasks:
22     - name: list application packages
23       shell: HELM_HOST={{ caas.tiller_ip }}:{{ caas.tiller_port }} helm search | tr '\n' ',' | tr '\t' ' '
24       register: list_application_packages_result
25
26     - name: create a json from list of application packages
27       template:
28         src: "return_value_list_application_packages.j2"
29         dest: "/tmp/return_value_list_application_packages.json"