Update build server and swarm support messages

This commit is contained in:
Andras Bacsai 2024-01-17 14:06:41 +01:00
parent 3878527de8
commit c5f3398b73
3 changed files with 4 additions and 4 deletions

View File

@ -7,8 +7,8 @@
<div class="flex flex-col pt-4 "> <div class="flex flex-col pt-4 ">
<h4>General</h4> <h4>General</h4>
<x-forms.checkbox <x-forms.checkbox
helper="Use a build server to build your application. You can configure your build server in the Server settings." helper="Use a build server to build your application. You can configure your build server in the Server settings. This is experimental."
instantSave id="application.settings.is_build_server_enabled" label="Use a Build Server?" /> instantSave id="application.settings.is_build_server_enabled" label="Use a Build Server? (experimental)" />
@if ($application->git_based()) @if ($application->git_based())
<x-forms.checkbox helper="Automatically deploy new commits based on Git webhooks." instantSave <x-forms.checkbox helper="Automatically deploy new commits based on Git webhooks." instantSave
id="application.settings.is_auto_deploy_enabled" label="Auto Deploy" /> id="application.settings.is_auto_deploy_enabled" label="Auto Deploy" />

View File

@ -59,7 +59,7 @@
helper="If you are using Cloudflare Tunnels, enable this. It will proxy all ssh requests to your server through Cloudflare.<br><span class='text-warning'>Coolify does not install/setup Cloudflare (cloudflared) on your server.</span>" helper="If you are using Cloudflare Tunnels, enable this. It will proxy all ssh requests to your server through Cloudflare.<br><span class='text-warning'>Coolify does not install/setup Cloudflare (cloudflared) on your server.</span>"
id="server.settings.is_cloudflare_tunnel" label="Cloudflare Tunnel" /> id="server.settings.is_cloudflare_tunnel" label="Cloudflare Tunnel" />
@if ($server->isSwarm()) @if ($server->isSwarm())
<div class="pt-6"> Swarm support is in alpha version. </div> <div class="pt-6"> Swarm support is experimental. </div>
@endif @endif
@if ($server->settings->is_swarm_worker) @if ($server->settings->is_swarm_worker)
<x-forms.checkbox disabled instantSave type="checkbox" id="server.settings.is_swarm_manager" <x-forms.checkbox disabled instantSave type="checkbox" id="server.settings.is_swarm_manager"

View File

@ -30,7 +30,7 @@
</div> </div>
<div class="w-96"> <div class="w-96">
<h3 class="pt-6">Swarm Support</h3> <h3 class="pt-6">Swarm Support</h3>
<div> Swarm support is in alpha version. Read the docs <a class='text-white' <div> Swarm support is experimental. Read the docs <a class='text-white'
href='https://coolify.io/docs/docker/swarm#deploy-with-persistent-storage' href='https://coolify.io/docs/docker/swarm#deploy-with-persistent-storage'
target='_blank'>here</a>.</div> target='_blank'>here</a>.</div>
@if ($is_swarm_worker || $is_build_server) @if ($is_swarm_worker || $is_build_server)