Skip to content

Commit d866c32

Browse files
committed
upgraded pydantic to 1.10.15
1 parent 05c056c commit d866c32

3 files changed

Lines changed: 46 additions & 32 deletions

File tree

poetry.lock

Lines changed: 43 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pyyaml = "^6.0.1"
1515
click-spinner = "^0.1.10"
1616
cryptography = "^42.0.7"
1717
dpath = "^2.0.5"
18-
pydantic = "1.8.1"
18+
pydantic = "^1.0"
1919
slack-sdk = "^3"
2020
pyjwt = "^2.4.0"
2121
requests = "^2.32.2"

robusta_cli/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ class GlobalConfig(BaseModel):
6969
class HelmValues(BaseModel, extra=Extra.allow):
7070
globalConfig: GlobalConfig
7171
sinksConfig: List[Union[SlackSinkConfigWrapper, RobustaSinkConfigWrapper, MsTeamsSinkConfigWrapper]]
72-
clusterName: Optional[str]
73-
isSmallCluster: Optional[bool]
72+
clusterName: Optional[str] = None
73+
isSmallCluster: Optional[bool] = None
7474
enablePrometheusStack: bool = False
7575
disableCloudRouting: bool = False
7676
enablePlatformPlaybooks: bool = False

0 commit comments

Comments
 (0)