2019-12-10 02:26:41 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
2020-12-21 17:36:38 +00:00
|
|
|
var testRuntimeConfigSanitizeExpectedFilename = "TestRuntimeConfig_Sanitize.golden"
|
2019-12-18 15:16:35 +00:00
|
|
|
|
2020-08-27 17:15:10 +00:00
|
|
|
func entFullRuntimeConfig(rt *RuntimeConfig) {}
|
2020-04-28 13:45:33 +00:00
|
|
|
|
2020-11-20 22:43:32 +00:00
|
|
|
var enterpriseReadReplicaWarnings = []string{enterpriseConfigKeyError{key: "read_replica (or the deprecated non_voting_server)"}.Error()}
|
|
|
|
|
|
|
|
var enterpriseConfigKeyWarnings = []string{
|
|
|
|
enterpriseConfigKeyError{key: "read_replica (or the deprecated non_voting_server)"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "autopilot.redundancy_zone_tag"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "autopilot.upgrade_version_tag"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "autopilot.disable_upgrade_migration"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "dns_config.prefer_namespace"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "acl.msp_disable_bootstrap"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "acl.tokens.managed_service_provider"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "audit"}.Error(),
|
2020-04-28 13:45:33 +00:00
|
|
|
}
|