From 08b80c20f0431d2d6cc38db1af1d3b7ad7d23815 Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Mon, 3 Jul 2023 09:14:05 +0200 Subject: [PATCH] Remove documentation of old swarm options --- docs/content/providers/swarm.md | 32 ++++---------------------------- 1 file changed, 4 insertions(+), 28 deletions(-) diff --git a/docs/content/providers/swarm.md b/docs/content/providers/swarm.md index 96c987c87..416583281 100644 --- a/docs/content/providers/swarm.md +++ b/docs/content/providers/swarm.md @@ -407,31 +407,7 @@ providers: # ... ``` -### `swarmMode` - -_Optional, Default=false_ - -Enables the Swarm Mode (instead of standalone Docker). - -```yaml tab="File (YAML)" -providers: - swarm: - swarmMode: true - # ... -``` - -```toml tab="File (TOML)" -[providers.swarm] - swarmMode = true - # ... -``` - -```bash tab="CLI" ---providers.swarm.swarmMode=true -# ... -``` - -### `swarmModeRefreshSeconds` +### `refreshSeconds` _Optional, Default=15_ @@ -440,18 +416,18 @@ Defines the polling interval (in seconds) for Swarm Mode. ```yaml tab="File (YAML)" providers: swarm: - swarmModeRefreshSeconds: 30 + refreshSeconds: 30 # ... ``` ```toml tab="File (TOML)" [providers.swarm] - swarmModeRefreshSeconds = 30 + refreshSeconds = 30 # ... ``` ```bash tab="CLI" ---providers.swarm.swarmModeRefreshSeconds=30 +--providers.swarm.refreshSeconds=30 # ... ```