Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 53b29bb

Browse files
BucketDefinition to BucketPatchDefinition
1 parent fc5f9d8 commit 53b29bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/k8s-configuration/azext_k8s_configuration/providers/FluxConfigurationProvider.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
GitRepositoryDefinition,
5353
GitRepositoryPatchDefinition,
5454
BucketDefinition,
55+
BucketPatchDefinition,
5556
RepositoryRefDefinition,
5657
KustomizationDefinition,
5758
KustomizationPatchDefinition,
@@ -1000,7 +1001,7 @@ def generate_patch_update_func(self, swapped_kind):
10001001

10011002
def bucket_patch_updater(config):
10021003
if any(kwarg is not None for kwarg in self.kwargs.values()):
1003-
config.bucket = BucketDefinition(
1004+
config.bucket = BucketPatchDefinition(
10041005
url=self.url,
10051006
bucket_name=self.bucket_name,
10061007
timeout_in_seconds=parse_duration(self.timeout),

0 commit comments

Comments
 (0)