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 48f3fc5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
- IMG=igluctl/0.6.0
- IMG=piinguin-server/0.1.1
- IMG=emr-etl-runner/r114_polonnaruwa
- IMG=k8s-dataflow/0.1.0
- IMG=k8s-dataflow/0.1.1
global:
# BINTRAY_SNOWPLOW_DOCKER_USER
- secure: IcBMTopBAIzGlWNgS7dw0iNmvFhd2dgSn/Y1mt6hXnzLrr7SDryRuxPqemsCBLIlf4xtpgHvuOoo+7jYywtAOqyHQ+EOnR5eU8/28v+Z8zd/Djnw0Sv10RV5oMS6ejh9gGS4WDNPvf9M1sfP5p+0gA0p68dNeObLDT4TwpG2pdpeEuqQ3RMGCQc+tb3Q26K6aUPXeIgAHUyIEgHtzxxfgrGNwSmxdb6npsWTUttKpQkJudGRk17xXW67Dd0PKLWJkDpien/lbkLIBK8MlwaH03NMawGcTChgM2njcqElqz1b46wxl1ATcVV2T7A6YPYZxb012P8j/KUZ6MLhdDFNhmz/jIk6caEZ3x4AH2Q0qN8C9Hn70yMN8gAliBeUN4pjLpKnD8t5HgCE+90EufppcQRCfCJhSk9xmegTaikan3QZCN09vwSctIBu4AeWYqctql6bLhNWguakbRIyk9feogmxqbn2HSoFpRrAEqXXv9jFKJrKm2UNKuLbXCvyoYqjAhxTPn7OMAY30wqsVSUu5gSt1fO0Pd+5H8yq44Ul3jROgYKM5NlLWUY+u8qp6KKm2zXQ2LFlr8rzZ2ar5pI9zZiABDMnRRUdAXDTnpDw2HtBvngGXhyfr/irrzach0z/f5YwHL7WVf9Wu7MqoVpexdDqThNGip4ansIikrC57LE=
Expand Down
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 48f3fc5

Please sign in to comment.