Scott Baker | 8f32cc8 | 2016-08-08 10:34:53 -0700 | [diff] [blame] | 1 | import os |
2 | import pdb | ||||
3 | import sys | ||||
4 | import tempfile | ||||
5 | sys.path.append("/opt/tosca") | ||||
6 | from translator.toscalib.tosca_template import ToscaTemplate | ||||
7 | |||||
8 | from services.hpc.models import HpcService | ||||
9 | |||||
10 | from service import XOSService | ||||
11 | |||||
12 | class XOSCdnService(XOSService): | ||||
13 | provides = "tosca.nodes.CDNService" | ||||
14 | xos_model = HpcService | ||||
15 | copyin_props = ["view_url", "icon_url"] | ||||
16 |