lorenzoaiello / liveatc-archiver

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LiveATC.net Archiver

CI

A simple application that is designed to be run daily that will download all of the LiveATC.net frequency recordings from the day before and store them on an FTP server.

Kubernetes Example

apiVersion: batch/v1beta1
kind: CronJob
metadata:
  name: daily-archiver
spec:
  schedule: "0 0 * * *"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
            - name: archiver
              image: laiello/liveatc-archiver:latest
              imagePullPolicy: Always
              env:
              - name: FTP_HOST
                value: ""
              - name: FTP_USER
                value: ""
              - name: FTP_PASS
                value: ""
              - name: FTP_BASE
                value: ""
          restartPolicy: OnFailure

About


Languages

Language:Go 93.3%Language:Dockerfile 6.7%