update cluster settings to enforce WireGuard requirements during test phase

This commit is contained in:
Eduardo Silva
2026-01-01 10:55:23 -03:00
parent b7065177a7
commit 18acdf0f09
3 changed files with 28 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ class ClusterSettings(models.Model):
stats_sync_interval = models.IntegerField(default=60)
stats_cache_interval = models.IntegerField(default=60)
cluster_mode = models.CharField(default='mirror', max_length=16, choices=(('mirror', 'Mirror'), ))
restart_mode = models.CharField(default='auto', max_length=16, choices=(('auto', 'Automatically restart/reload'), ('manual', 'Manual')))
restart_mode = models.CharField(default='auto', max_length=16, choices=(('auto', 'Automatic restart'),))
worker_display = models.CharField(
default='server_address', max_length=16, choices=(
('name', 'Name'), ('server_address', 'Server Address'),