Skip to content

Commit

Permalink
Make verbosity configurable and not leak sensitive values (#4249)
Browse files Browse the repository at this point in the history
* Make verbosity configurable and not leak sensitive values

* Use same ENV value convention
  • Loading branch information
gtrog authored and RafalSkolasinski committed Aug 5, 2022
1 parent eefa9e4 commit 123117a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/rclone-storage-initializer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ LABEL name="Storage Initializer (rclone based)" \
ENV RCLONE_CONFIG_GS_TYPE google cloud storage
ENV RCLONE_CONFIG_GS_ANONYMOUS true

ENTRYPOINT ["rclone", "copy", "-vv"]
# Do not set to '2' by default, as this may leak sensitive values
ENV RCLONE_VERBOSE 1

ENTRYPOINT ["rclone", "copy"]

0 comments on commit 123117a

Please sign in to comment.