diff --git a/managed/src/main/java/com/yugabyte/yw/common/config/ProviderConfKeys.java b/managed/src/main/java/com/yugabyte/yw/common/config/ProviderConfKeys.java index 9ee58c2d125d..004824663ca9 100644 --- a/managed/src/main/java/com/yugabyte/yw/common/config/ProviderConfKeys.java +++ b/managed/src/main/java/com/yugabyte/yw/common/config/ProviderConfKeys.java @@ -96,7 +96,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "Min Python Version (inclusive)", "", ConfDataType.StringType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo maxPyVer = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.max_python_version", @@ -104,7 +104,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "Max Python Version (exclusive)", "", ConfDataType.StringType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo defaultAwsVolumeCount = new ConfKeyInfo<>( "yb.aws.default_volume_count", @@ -208,7 +208,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "User", "", ConfDataType.StringType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo userGroup = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.user_group", @@ -216,7 +216,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "User Group", "", ConfDataType.StringType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo minPrometheusSpaceMb = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.min_prometheus_space_mb", @@ -224,7 +224,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "Min Prometheus Space MB", "", ConfDataType.IntegerType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo minTempDirSpaceMb = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.min_tmp_dir_space_mb", @@ -232,7 +232,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "Min Temp Dir Space MB", "", ConfDataType.IntegerType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo minHomeDirSpaceMb = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.min_home_dir_space_mb", @@ -240,7 +240,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "Min Home Space MB", "", ConfDataType.IntegerType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo minMountPointDirSpaceMb = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.min_mount_point_dir_space_mb", @@ -248,7 +248,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "Min Mount Point Dir Space MB", "", ConfDataType.IntegerType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo ulimitCore = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.ulimit_core", @@ -256,7 +256,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "ulimit core ", "", ConfDataType.StringType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo ulimitOpenFiles = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.ulimit_open_files", @@ -264,7 +264,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "ulimit open files", "", ConfDataType.StringType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo ulimitUserProcesses = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.ulimit_user_processes", @@ -272,7 +272,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "ulimit user processes", "", ConfDataType.StringType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo swappiness = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.swappiness", @@ -280,7 +280,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "swappiness", "", ConfDataType.IntegerType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo sshTimeout = new ConfKeyInfo<>( "yb.node_agent.preflight_checks.ssh_timeout", @@ -288,7 +288,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "SSH connection timeout", "", ConfDataType.IntegerType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo enableNodeAgentClient = new ConfKeyInfo<>( @@ -306,7 +306,7 @@ public class ProviderConfKeys extends RuntimeConfigKeysModule { "VM max map count", "Max count of memory-mapped regions allowed in the system.", ConfDataType.IntegerType, - ImmutableList.of(ConfKeyTags.BETA)); + ImmutableList.of(ConfKeyTags.INTERNAL)); public static final ConfKeyInfo enableAnsibleOffloading = new ConfKeyInfo<>( "yb.node_agent.ansible_offloading.enabled",