Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Add support for beam-enrich CLI params in k8s-dataflow (closes #137)
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Limanowski committed Feb 18, 2020
1 parent df0fcfb commit ca0ec3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@ for opt in "$@"; do
PARAMS="$PARAMS $opt"
shift
;;
--gcpTempLocation=*)
BUCKET="${opt#*=}"
PARAMS="$PARAMS $opt"
shift
;;
--gcsThreshold=*)
THRESHOLD="${opt#*=}"
shift
;;
--gcsDelay*)
--gcsDelay=*)
DELAY="${opt#*=}"
shift
;;
Expand Down

0 comments on commit ca0ec3f

Please sign in to comment.