-
Notifications
You must be signed in to change notification settings - Fork 831
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial commit for rclone dynamic config from model details * Allow k8s secrets for rclone config * Updates from design doc review. Update rclone config key to include user supplied remote. Use oneof in protos. * updated notebook * Review comments. Simplify config function. Fix rclone copy with no config * lint * lint from root * Review comments: make storageConfig optional in proto. Small fixes * Change to inline configuration * lint * Add configuration handler and rclone defaults load * lint * Add watch of local config file * lint * Update main to handle signals * add k8s config handling * Add test for watching configmaps. Change NewConfigHandler signature to allow passing in kubernetes.interface * Initial review updates * review comments part 2 * fix lint * gofmt -w pkg * Simplify struct * Lint Simplify struct * Remove error from NewClient * review fixes * fix typo * Review fixes * lint * review comments * remove agent.json as a possible config file and only allow agent.yaml * remove json processing
- Loading branch information
1 parent
fb0b736
commit 1264010
Showing
39 changed files
with
4,063 additions
and
548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
FROM rclone/rclone:1.56.2 | ||
|
||
COPY rclone.conf /.rclone.conf | ||
RUN chmod a+r /.rclone.conf | ||
CMD ["rcd","--rc-no-auth","--rc-addr=0.0.0.0:5572","--verbose"] | ||
RUN mkdir -p /rclone && chmod a+rw /rclone && touch /rclone/rclone.conf | ||
CMD ["rcd","--rc-no-auth","--config=/rclone/rclone.conf","--rc-addr=0.0.0.0:5572","--verbose"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.