Skip to content

Commit d2d13b1

Browse files
authored
fix: Bytewax image pull secret config (#3547)
* fix: bytewax image pull secrets Signed-off-by: adamschmidt <aschmidt1978@gmail.com> * fix: bytewax image pull secrets Signed-off-by: adamschmidt <aschmidt1978@gmail.com> --------- Signed-off-by: adamschmidt <aschmidt1978@gmail.com>
1 parent 5310280 commit d2d13b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/python/feast/infra/materialization/contrib/bytewax/bytewax_materialization_engine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class BytewaxMaterializationEngineConfig(FeastConfigBaseModel):
4646
These environment variables can be used to reference Kubernetes secrets.
4747
"""
4848

49-
image_pull_secrets: List[str] = []
49+
image_pull_secrets: List[dict] = []
5050
""" (optional) The secrets to use when pulling the image to run for the materialization job """
5151

5252
resources: dict = {}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595

9696
AWS_REQUIRED = ["boto3>=1.17.0,<=1.20.23", "docker>=5.0.2", "s3fs>=0.4.0,<=2022.01.0"]
9797

98-
BYTEWAX_REQUIRED = ["bytewax==0.13.1", "docker>=5.0.2", "kubernetes<=20.13.0"]
98+
BYTEWAX_REQUIRED = ["bytewax==0.15.1", "docker>=5.0.2", "kubernetes<=20.13.0"]
9999

100100
SNOWFLAKE_REQUIRED = [
101101
"snowflake-connector-python[pandas]>=2.7.3,<3",

0 commit comments

Comments
 (0)