No description
This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • Python 91.8%
  • Dockerfile 8.2%
Find a file
Thenuja Viknarajah 38142ebc79
Some checks failed
ci / tests (push) Failing after 32s
ci / build (push) Has been skipped
ci fix
2023-04-04 17:55:51 +01:00
.github/workflows ci fix 2023-04-04 17:55:51 +01:00
app - move formatters to dev 2023-04-04 17:53:55 +01:00
deploy move certain variables into settings, make variable names better 2022-10-21 13:09:37 +01:00
.gitignore rewrite 2023-04-03 17:03:52 +01:00
Dockerfile update Dockerfile 2023-04-03 17:11:42 +01:00
kustomization.yaml move certain variables into settings, make variable names better 2022-10-21 13:09:37 +01:00
LICENSE Initial commit 2022-10-03 08:51:44 +01:00
poetry.lock - move formatters to dev 2023-04-04 17:53:55 +01:00
pyproject.toml - move formatters to dev 2023-04-04 17:53:55 +01:00
README.md README updated 2022-10-21 13:16:43 +01:00

azureblob-to-azureblob

Copies Files from Azure Blob Storage to another Azure Blob Storage

Deployment and Usage

Deployment via kustomization.yaml

bases:
  - github.com/binkhq/azureblob-to-azureblob/deploy

patches:
  - target:
      kind: CronJob
    patch: |-
      - op: replace
        path: /metadata/name
        value: media-daily-backup
  - target:
      kind: CronJob
    patch: |-
      - op: replace
        path: /spec/schedule
        value: "0 1 * * *"
  - target:
      kind: CronJob
    patch: |-
      - op: replace
        path: /spec/jobTemplate/spec/template/spec/containers/0/env
        value:
          - name: source_connection_string
            valueFrom:
              secretKeyRef:
                key: connection_string
                name: azure-storage-common
          - name: destination_connection_string
            valueFrom:
              secretKeyRef:
                key: connection_string
                name: azure-storage-common
          - name: source_container_name
            value: media
          - name: destination_container_name
            value: backups