There is an issue with update that the templates files need to be downloaded before being sent to heat. This solves the issue on the update side. Change-Id: I8aa6262716534dec7b51e64f491d7131c359f802 Depends-On: Ib644185f2459e1705267a4114d97cf077ebfa884 Closes-Bug: #1626128
18 lines
766 B
Python
18 lines
766 B
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
from tripleoclient.workflows import base
|
|
|
|
|
|
def process_templates(workflow_client, **workflow_input):
|
|
return base.call_action(workflow_client, 'tripleo.templates.process',
|
|
**workflow_input)
|