Service Settings
To get to the service settings, navigate to the project, that contains your service and then click on the service, that you want to configure.
Settings
The service settings show an overview over all of the settings, that you used to deploy your service. If you need a more detailled explanation about these settings, please read chapter Deploying a Service.
You can update many, but not all of these settings. Updating any configuration here, will automatically trigger a redeploy of your service.
Settings that can’t be changed are:
- the deploy source, you can’t switch from GitHub to Docker Hub
- whether the service is exposed publically or it is accessible on your server only
- the protocol to communicate with your service (HTTP, TCP, UDP)
- the server this service has been deployed to
Deploy rules
For services deployed from a repository, you can add deploy rules to control when deploys are triggered. This is especially useful for monorepos, where you typically don’t want to build every part of your application on every new commit.
- Autodeploy: Toggle this, if you want to deploy new commits automatically. Otherwise, you can use the deploy hook to trigger new deploys.
- Include Paths: Only deploy if the commit contains changes in one of the included paths.
- Ignore Paths: Skip deploys if the commit only contains changes in on of the ignore paths.
You can set both ignore paths and include paths.
Ignore and Include paths can either be an exact match of a file path/to/file
or a glob pattern path/to/*.js
. Not specifying any paths will match all paths.
If any changed file matches the include paths (or its empty) while none matches the ignore paths, Sliplane will deploy.
Glob Patterns
Glob patterns match filenames using wildcards: *
matches any sequence of characters (except /), ?
matches any single character, and character classes like [abc]
match any enclosed character. Common examples: src/backend/**/*
, src/frontend/**/*
, src/**/*
, package.json
.
Service Info
Service Status
The service status shows you instantly, whether you service is running or not. It can either be
- Up if everything is fine,
- Down if your service has been deployed, but it is currently not running.
- Paused if your service is paused.
- Pending if your service has not yet been deployed, but the deploy is in progress.
Deploy Status
The deploy status shows
- Deploy Live for successful deploys,
- Deploy Failed for unsuccessful deploys,
- Deploy in Progress for deploys in progress.
Apart from the first deploy, the deploy status is independent from your service status. If a deploy fails, it does not bring down your service.
Sliplane first spins up a new version of your service and only redirects traffic, if it can verify that the service is running.
Deploy Hook
A GET request to this URL will trigger a new deploy of your service. Keep this URL secret, as anyone with it can control deploys of your service.
Domain / Internal Host
Public services are hooked up with a …sliplane.app domain in order to access them over the internet.
If your service is private, you will see the internal host of your service here that you can use to connect to your service, from other services on the same server.
For TCP and UDP services, the domains ends with a port, that is used to find your service on the server.
Repository
If you deployed from GitHub, you can find a link to your GitHub repository here.
Public Image
If you deployed from Docker Hub, you can find a link to the public image on Docker Hub here.
Server
This links to the server, where your service was deployed on.