fix(meshcentral): try unsetting maintanancemode (#4214)

* update questions

* test maintannce
This commit is contained in:
Stavros Kois
2022-10-27 20:03:56 +03:00
committed by GitHub
parent abab516c51
commit 4da3cec070
3 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: meshcentral name: meshcentral
appVersion: "1.0.90" appVersion: "1.0.90"
version: 5.0.10 version: 5.0.11
description: MeshCentral is a full computer management web site description: MeshCentral is a full computer management web site
type: application type: application
deprecated: false deprecated: false
+8 -5
View File
@@ -37,21 +37,24 @@ questions:
description: Set this to the primary DNS name of this MeshCentral server. description: Set this to the primary DNS name of this MeshCentral server.
schema: schema:
type: string type: string
# required: true
default: "" default: ""
- variable: tlsOffload - variable: tlsOffload
label: tlsOffload label: tlsOffload
description: When true, indicates that a TLS offloader is in front of the MeshCentral server. More typically, set this to the IP address of the reverse proxy or TLS offloader so that IP forwarding headers will be trusted. For example 127.0.0.1,traefik.ix-traefik.svc.cluster.local description: When true, indicates that a TLS offloader is in front of the MeshCentral server. More typically, set this to the IP address of the reverse proxy or TLS offloader so that IP forwarding headers will be trusted. For example traefik.ix-traefik.svc.cluster.local
schema: schema:
type: string type: string
# required: true
default: "" default: ""
- variable: trustedProxy - variable: trustedProxy
label: trustedProxy label: trustedProxy
description: Trust forwarded headers from these IPs or domains. Providing the magic string "CloudFlare" will cause the server to download the IP address list of trusted CloudFlare proxies directly from CloudFlare on each server start. For example 127.0.0.1,traefik.ix-traefik.svc.cluster.local description: Trust forwarded headers from these IPs or domains. Providing the magic string "CloudFlare" will cause the server to download the IP address list of trusted CloudFlare proxies directly from CloudFlare on each server start. For example traefik.ix-traefik.svc.cluster.local
schema:
type: string
default: ""
- variable: maintenanceMode
label: maintenanceMode
description: When enabled the server is in maintenance mode, only administrators can login. Use the maintenance command in server console to change.
schema: schema:
type: string type: string
# required: true
default: "" default: ""
- variable: WANonly - variable: WANonly
label: WANonly label: WANonly
+1 -1
View File
@@ -50,7 +50,7 @@ meshcentral:
# - When enabled, only MeshCentral LAN features are enabled and agents will find the server using multicast LAN packets. # - When enabled, only MeshCentral LAN features are enabled and agents will find the server using multicast LAN packets.
LANonly: false LANonly: false
# - When enabled the server is in maintenance mode, only administrators can login. Use the maintenance command in server console to change. # - When enabled the server is in maintenance mode, only administrators can login. Use the maintenance command in server console to change.
maintenanceMode: false maintenanceMode: ""
allowLoginToken: false allowLoginToken: false
# - Controls the Strict-Transport-Security header, default is 1 year. Set to false to remove, true to force enable, or string to set a custom value. If set to null, MeshCentral will enable if a trusted certificate is set. # - Controls the Strict-Transport-Security header, default is 1 year. Set to false to remove, true to force enable, or string to set a custom value. If set to null, MeshCentral will enable if a trusted certificate is set.
_StrictTransportSecurity: null _StrictTransportSecurity: null