kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
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
#!/usr/bin/env bash | |
########## Configuration ########## | |
SSH_PASSWD="" # SSH password of the storagebox | |
BORG_USER="" # Storagebox user | |
BORG_SERVER="xxx.your-storagebox.de" # Storagebox | |
BORG_REPO="~/borg" # Borg repository on the storagebox | |
FILES="/home /opt" # Files to backup (space separated) | |
################################### |
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
version: "3" | |
services: | |
sftpgo: | |
image: "drakkan/sftpgo:v2-alpine" | |
# default user id | |
user: 1026 | |
restart: always | |
expose: | |
# HTTP | |
- "8080" |
OlderNewer