We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8a55ef commit 040987fCopy full SHA for 040987f
helm_values_manager/models/helm_values_config.py
@@ -37,7 +37,6 @@ def __init__(self):
37
self.deployments: Dict[str, Deployment] = {}
38
self._path_map: Dict[str, PathData] = {}
39
self._backend = SimpleValueBackend() # For non-sensitive values
40
- self.default_environment = "default"
41
42
@classmethod
43
def _load_schema(cls) -> Dict[str, Any]:
tests/unit/models/test_helm_values_config.py
@@ -11,7 +11,6 @@ def test_helm_values_config_initialization():
11
config = HelmValuesConfig()
12
assert config.deployments == {}
13
assert config._path_map == {}
14
- assert config.default_environment == "default"
15
16
17
def test_add_config_path():
0 commit comments