From c644ab480d2a764ee242cca14f96ea28a181bcad Mon Sep 17 00:00:00 2001 From: Rajamohan Raj Date: Tue, 31 Mar 2020 01:30:03 +0000 Subject: Resolve the helm templates Resolving the helm templates for each of the apps in the compositeApp by utilizing the helm libraries and thus getting the sorted templates with all values rendered. This is a subtask of adding instantiation APIs. Issue-ID: MULTICLOUD-1041 Signed-off-by: Rajamohan Raj Change-Id: Id4fddda69b5276b2409d835723b11367400ab6ea --- src/orchestrator/pkg/module/module.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/orchestrator/pkg/module/module.go') diff --git a/src/orchestrator/pkg/module/module.go b/src/orchestrator/pkg/module/module.go index c697bbff..e05b8753 100644 --- a/src/orchestrator/pkg/module/module.go +++ b/src/orchestrator/pkg/module/module.go @@ -1,5 +1,5 @@ /* - * Copyright 2018 Intel Corporation, Inc + * Copyright 2020 Intel Corporation, Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -29,6 +29,7 @@ type Client struct { CompositeProfile *CompositeProfileClient AppProfile *AppProfileClient // Add Clients for API's here + Instantiation *InstantiationClient } // NewClient creates a new client for using the services @@ -45,5 +46,6 @@ func NewClient() *Client { c.CompositeProfile = NewCompositeProfileClient() c.AppProfile = NewAppProfileClient() // Add Client API handlers here + c.Instantiation = NewInstantiationClient() return c } -- cgit 1.2.3-korg