Git Product home page Git Product logo

job-files-backup-to-cloud's Introduction

Backup files to cloud

Usage example in k8s CronJob

apiVersion: batch/v1
kind: CronJob
metadata:
  labels:
    app: backup-grafana
  name: backup-grafana
  namespace: monitoring
spec:
  schedule: "0 0 */3 * *"
  successfulJobsHistoryLimit: 5
  failedJobsHistoryLimit: 5
  concurrencyPolicy: Forbid
  jobTemplate:
    spec:
      template:
        spec:
          nodeSelector:
            node: tm-node-1
          containers:
            - name: backup-grafana
              image: vmpartner/job-files-backup-to-cloud:v1.1.0
              resources:
                limits:
                  cpu: 250m
                  memory: 256Mi
                requests:
                  cpu: 100m
                  memory: 64Mi
              env:
              - name: TZ
                value: "Europe/Moscow"
              - name: RCLONE_CONFIG_SELECTEL_TYPE
                value: "swift"
              - name: RCLONE_CONFIG_SELECTEL_ENV_AUTH
                value: "false"
              - name: RCLONE_CONFIG_SELECTEL_USER
                value: "my_user"
              - name: RCLONE_CONFIG_SELECTEL_KEY
                value: "my_password"
              - name: RCLONE_CONFIG_SELECTEL_AUTH
                value: "https://auth.selcdn.ru/v1.0"
              - name: RCLONE_CONFIG_SELECTEL_ENDPOINT_TYPE
                value: "public"
              - name: RCLONE_DEST
                value: "selectel:global/grafana"
              - name: CHECK_URL
                value: "https://hc-ping.com/d178069f-1e18-43db-b5c9-39c2d04f261c"
              volumeMounts:
                - mountPath: /etc/localtime
                  name: localtime
                  readOnly: true
                - mountPath: /source
                  name: grafana-storage
                  readOnly: true
          restartPolicy: OnFailure
          volumes:
            - hostPath:
                path: /etc/localtime
              name: localtime
            - name: grafana-storage
              hostPath:
                path: /mnt/k8s/monitoring/grafana

Used https://rclone.org for rsync to cloud

job-files-backup-to-cloud's People

Contributors

vmpartner avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.