Skip to content

Commit

Permalink
Merge pull request #335 from basedosdados/fix/dbt-deps-args
Browse files Browse the repository at this point in the history
fix: update pod startup args
  • Loading branch information
vncsna authored Oct 23, 2023
2 parents a15a420 + 5bb7b41 commit 50c367e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .kubernetes/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ spec:
- "/bin/sh"
- "-c"
args:
- "dbt deps;"
"dbt-rpc serve --profiles-dir . --profile default --target dev --host 0.0.0.0 --port 8580"
- >
dbt deps;
dbt-rpc serve --profiles-dir . --profile default --target dev --host 0.0.0.0 --port 8580
volumes:
- name: credentials-dev
secret:
Expand Down Expand Up @@ -81,8 +82,9 @@ spec:
- "/bin/sh"
- "-c"
args:
- "dbt deps;"
"dbt-rpc serve --profiles-dir . --profile default --target prod --host 0.0.0.0 --port 8580"
- >
dbt deps;
dbt-rpc serve --profiles-dir . --profile default --target prod --host 0.0.0.0 --port 8580
volumes:
- name: credentials-dev
secret:
Expand Down

0 comments on commit 50c367e

Please sign in to comment.