This file contains hidden or 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
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: arangodb-agents | |
spec: | |
ports: | |
- port: 8529 | |
targetPort: 8529 | |
clusterIP: None |
This file contains hidden or 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
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: arangodb-agents | |
spec: | |
ports: | |
- port: 8529 | |
targetPort: 8529 | |
clusterIP: None |
This file contains hidden or 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
#!/bin/bash | |
# | |
# This backs-up to Dropbox without leaving files locally. | |
# A local .tar.gz is made, uploaded, then removed. This saves | |
# space locally when keeping many backups. | |
# | |
# Requires: Dropbox-Uploader from https://github.com/andreafabrizi/Dropbox-Uploader | |
# | |
# Install and setup Dropbox-Uploader first! | |
# |