Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 1 | # Copyright © 2019 AT&T Intellectual Property. All rights reserved. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain 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, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 14 | make-dcaegen2: make-dcae-bootstrap make-dcae-cloudify-manager make-dcae-config-binding-service make-dcae-healthcheck make-dcae-redis make-dcae-servicechange-handler make-dcae-inventory-api make-dcae-deployment-handler make-dcae-policy-handler make-dcae-dashboard |
Jack Lucas | 346b52f | 2019-02-07 18:36:42 -0500 | [diff] [blame] | 15 | |
| 16 | make-dcae-bootstrap: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 17 | cd components && helm dep up dcae-bootstrap && helm lint dcae-bootstrap |
Jack Lucas | 346b52f | 2019-02-07 18:36:42 -0500 | [diff] [blame] | 18 | |
| 19 | make-dcae-cloudify-manager: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 20 | cd components && helm dep up dcae-cloudify-manager && helm lint dcae-cloudify-manager |
Jack Lucas | 346b52f | 2019-02-07 18:36:42 -0500 | [diff] [blame] | 21 | |
| 22 | make-dcae-config-binding-service: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 23 | cd components && helm dep up dcae-config-binding-service && helm lint dcae-config-binding-service |
Jack Lucas | 346b52f | 2019-02-07 18:36:42 -0500 | [diff] [blame] | 24 | |
| 25 | make-dcae-healthcheck: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 26 | cd components && helm dep up dcae-healthcheck && helm lint dcae-healthcheck |
Jack Lucas | 346b52f | 2019-02-07 18:36:42 -0500 | [diff] [blame] | 27 | |
| 28 | make-dcae-redis: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 29 | cd components && helm dep up dcae-redis && helm lint dcae-redis |
Jack Lucas | 346b52f | 2019-02-07 18:36:42 -0500 | [diff] [blame] | 30 | |
| 31 | make-dcae-servicechange-handler: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 32 | cd components && helm dep up dcae-servicechange-handler && helm lint dcae-servicechange-handler |
Jack Lucas | 346b52f | 2019-02-07 18:36:42 -0500 | [diff] [blame] | 33 | |
| 34 | make-dcae-inventory-api: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 35 | cd components && helm dep up dcae-inventory-api && helm lint dcae-inventory-api |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 36 | |
| 37 | make-dcae-deployment-handler: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 38 | cd components && helm dep up dcae-deployment-handler && helm lint dcae-deployment-handler |
Jack Lucas | ecc9f60 | 2019-03-19 11:38:42 -0400 | [diff] [blame] | 39 | |
| 40 | make-dcae-policy-handler: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 41 | cd components && helm dep up dcae-policy-handler && helm lint dcae-policy-handler |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 42 | |
| 43 | make-dcae-dashboard: |
Ubuntu | e9cd1ee | 2019-11-07 16:26:50 +0000 | [diff] [blame] | 44 | cd components && helm dep up dcae-dashboard && helm lint dcae-dashboard |
| 45 | |
| 46 | clean: |
| 47 | @find . -type f -name '*.tgz' -delete |
| 48 | @find . -type f -name '*.lock' -delete |