Skip to content

Commit

Permalink
Pick up kube-custom-resource fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkjpryor committed Nov 9, 2023
1 parent 03d1393 commit 7da641f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions azimuth_capi/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#: Type for a string that validates as a URL
AnyHttpUrl = t.Annotated[
str,
AfterValidator(lambda v: TypeAdapter(PyAnyHttpUrl).validate_python(v))
AfterValidator(lambda v: str(TypeAdapter(PyAnyHttpUrl).validate_python(v)))
]


Expand Down Expand Up @@ -83,7 +83,7 @@ class ZenithConfig(Section):
#: The version of the charts to use
#: When changing this, be aware that the operator may depend on the layout of
#: the Helm values at a particular version
chart_version: SemVerVersion = "0.1.1-dev.0.feature-migrate-to-pydantic2.7"
chart_version: SemVerVersion = "0.1.1-dev.0.feature-migrate-to-pydantic2.9"

#: Defaults for use with the apiserver chart
apiserver_defaults: t.Dict[str, t.Any] = Field(default_factory = dict)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ idna==3.4
iso8601==2.1.0
Jinja2==3.1.2
kopf==1.36.2
kube-custom-resource @ git+https://github.com/stackhpc/kube-custom-resource.git@17b18bea9618a6ba55c07852fb594abe89a5c88b
kube-custom-resource @ git+https://github.com/stackhpc/kube-custom-resource.git@0a15ca86fa820ecbdbb24f726b3583efaffa4ae7
MarkupSafe==2.1.3
multidict==6.0.4
pycparser==2.21
Expand Down

0 comments on commit 7da641f

Please sign in to comment.