Git Product home page Git Product logo

hs-hack's Introduction

Tools

Algorithm

  • Initialize
    • Resource Group (command)
  • ARM Deployment (command 1.deploy.json)
    • Creates Storage Account
    • Creates Azure Container Instance
      • Container creates File Share
  • Upload Files (script)
  • ARM Deployment (command 2.deploy.json)
    • Deploy Custom Image to ACI
      • With Mapped File Share
  • Wait for processing to complete (manually)
  • Download Files (script)
  • Delete all resources (command)

Commands

Specify

  • Resource Group Name (alpha-numeric)
  • Resource Group Location (West US 2)
  • Customer Name (alpha-numeric)
  • Container Image Name

Deploy

1. Create Resource Group

az group create -g <resourceGroupName> --location "West US 2"

2. Setup File Share

az group deployment create --name setup --resource-group <resourceGroupName> --template-file 1.deploy.json --parameters customerName=<customerName>

3. Upload

azcopy --source /mnt/<customerName> --destination https://<storageAccountName>.file.core.windows.net/<customerName> --dest-key <storageAccountKey>

4. Process Files (Container)

az group deployment create --name process --resource-group <resourceGroupName> --template-file 2.deploy.json --parameters 2.parameters.json

5. Download

azcopy --source https://<storageAccountName>.file.core.windows.net/<customerName> --destination /mnt/<customerName> --source-key <storageAccountKey> --recursive

6. Delete Resources ($0)

az group delete -n <resourceGroupName>

V.Next

  1. Container Registry
  2. Code changes
  • Process terminates when done
  • Don't delete files
  • ini -> data store (later)
  • processing can be per file (later)
  1. Template Changes
  • CPU/Memory ACI
  1. Automation
  • Uploads
  • Waiting for processing to complete
  • Downloads
  1. DevOps
  • CI
  • CD

hs-hack's People

Stargazers

 avatar

Watchers

 avatar  avatar  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.