Как развернуть веб-проект Java с помощью Ant на экземпляре Gcloud VM

Я искал gcloud doc для развертывания веб-проекта java, но в результате получил только maven project doc. Проект уже создан в облачной консоли Google и также установлен Google SDK.

1 ответ

Один из способов - просто подключиться к облачной машине Google с помощью задач sshexec & scp в ant, а также поместить tarball и извлечь, например,..:

<target name="deploy-staging" description="Deploy to staging">
        <input message="Staging Passphrase:" addproperty="my.password">
            <handler classname="org.apache.tools.ant.input.SecureInputHandler" />
        </input>
        <!-- Create the new release folder on host-->
        <sshexec trust="true"
                 host="hosthere"
                 username="username"
                 keyfile="${user.home}/.ssh/keyfile"
                 passphrase="${my.password}"
                 command="mkdir /var/www/releases/${git.revision}" />

        <!-- Push the application tarball to the server-->
        <scp trust="true"
             file="${basedir}/build/${git.revision}.tar.gz"
             todir="username@${hosthere}:/var/www/releases/${git.revision}"
             keyfile="${user.home}/.ssh/keyfile"
             passphrase="${my.password}"/>

        <!-- Extract the tarball on the server-->
        <sshexec trust="true"
                 host="${hosthere}"
                 username="username"
                 keyfile="${user.home}/.ssh/keyfile"
                 passphrase="${my.password}"
                 command="cd /var/www/releases/${git.revision}; tar -xvzf ${git.revision}.tar.gz" />
        <sshexec trust="true"
                 host="${hosthere}"
                 username="username"
                 keyfile="${user.home}/.ssh/keyfile"
                 passphrase="${my.password}"
                 command="rm -rf /var/www/current" />

        <sshexec trust="true"
                 host="${hosthere}"
                 username="username"
                 keyfile="${user.home}/.ssh/keyfile"
                 passphrase="${my.password}"
                 command="ln -s /var/www/releases/${git.revision} -T /var/www/current" />
     </target>

Вышесказанное не проверялось... в конечном итоге использовало его во время поиска лучшего способа обработки групп, созданных с помощью gcloud.

Другие вопросы по тегам