Skip to content

Commit

Permalink
fix: Bytewax image pull secret config (#3547)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
adamschmidt authored Mar 24, 2023
1 parent 5310280 commit d2d13b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class BytewaxMaterializationEngineConfig(FeastConfigBaseModel):
These environment variables can be used to reference Kubernetes secrets.
"""

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

resources: dict = {}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@

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

BYTEWAX_REQUIRED = ["bytewax==0.13.1", "docker>=5.0.2", "kubernetes<=20.13.0"]
BYTEWAX_REQUIRED = ["bytewax==0.15.1", "docker>=5.0.2", "kubernetes<=20.13.0"]

SNOWFLAKE_REQUIRED = [
"snowflake-connector-python[pandas]>=2.7.3,<3",
Expand Down

0 comments on commit d2d13b1

Please sign in to comment.