Skip to content

Commit

Permalink
Add missing force_fetch fields for Git and HTTP(S) dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
simu committed Sep 25, 2024
1 parent 593e5f9 commit f0b716e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kapitan/inventory/model/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,13 @@ class KapitanDependencyGitConfig(KapitanDependencyBaseConfig):
ref: Optional[str] = "master"
subdir: Optional[str] = None
submodules: Optional[bool] = False
force_fetch: Optional[bool] = False


class KapitanDependencyHttpsConfig(KapitanDependencyBaseConfig):
type: Literal[KapitanDependencyTypes.HTTPS, KapitanDependencyTypes.HTTP]
unpack: bool = False
force_fetch: Optional[bool] = False


DependencyTypeConfig = Union[
Expand Down

0 comments on commit f0b716e

Please sign in to comment.