我可以创建没有驱动程序的云壳吗?

时间:2016-09-22 10:13:15

标签: python continuous-integration devops continuous-deployment quali-cloudshell

我想用驱动程序构建一个quali cloudshell shell。即只是一个没有python驱动程序的数据模型。 我可以在使用shellfoundry时这样做吗?

1 个答案:

答案 0 :(得分:1)

是的,无论是否使用ShellFoundry,您都可以在没有驱动程序的情况下创建CloudShell Shell。

要删除驱动程序附加到Shell的模型,请打开 datamodel 目录下的 shellconfig.xml 文件进行编辑。

然后从 ResourceTemplate XML节点中删除驱动程序属性:

<?xml version="1.0" encoding="utf-8"?>
<ShellsConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.qualisystems.com/ResourceManagement/ShellsConfigurationSchema.xsd">
<ResourceTemplates>
    <ResourceTemplate Name="ShellWithoutDriver" Model="ShellWithoutDriver">
        <Description></Description>
        <AutoLoad Enable="false">
            <Description>Description for autoload </Description>
        </AutoLoad>
        <Attributes>
            <Attribute Name="User" Value="" />
            <Attribute Name="Password" Value="" />
        </Attributes>
    </ResourceTemplate>    
</ResourceTemplates>
</ShellsConfiguration>