@triplit/fly-admin
TypeScript icon, indicating that this package has built-in type declarations

1.7.1 • Public • Published

fly-admin

A Typescript client for managing Fly infrastructure.

Install

npm i --save fly-admin

Usage

import { createClient } from 'fly-admin'

const fly = createClient('FLY_API_TOKEN')

async function deployApp() {
  const machine = await fly.Machine.createMachine({
    app_name: 'myAppId',
    image: 'supabase/postgres',
  })
}

API

Apps

  • fly.App.listApps()
  • fly.App.getApp()
  • fly.App.createApp()
  • fly.App.deleteApp()

Machines

  • fly.Machine.listMachines()
  • fly.Machine.getMachine()
  • fly.Machine.createMachine()
  • fly.Machine.updateMachine()
  • fly.Machine.startMachine()
  • fly.Machine.stopMachine()
  • fly.Machine.deleteMachine()
  • fly.Machine.restartMachine()
  • fly.Machine.signalMachine()
  • fly.Machine.waitMachine()
  • fly.Machine.cordonMachine()
  • fly.Machine.uncordonMachine()
  • fly.Machine.listEvents()
  • fly.Machine.listVersions()
  • fly.Machine.listProcesses()
  • fly.Machine.getLease()
  • fly.Machine.acquireLease()

Networks

  • fly.Network.allocateIpAddress()
  • fly.Network.releaseIpAddress()

Organizations

  • fly.Organization.getOrganization()

Secrets

  • fly.Secret.setSecrets()
  • fly.Secret.unsetSecrets()

Volumes

  • fly.Volume.listVolumes()
  • fly.Volume.getVolume()
  • fly.Volume.createVolume()
  • fly.Volume.deleteVolume()
  • fly.Volume.extendVolume()
  • fly.Volume.listSnapshots()

TODO

  • [ ] fly.Machine.execMachine()
  • [ ] fly.Machine.releaseLease()
  • [ ] fly.Machine.getMetadata()
  • [ ] fly.Machine.updateMetadata()
  • [ ] fly.Machine.deleteMetadata()

License

MIT

/@triplit/fly-admin/

    Package Sidebar

    Install

    npm i @triplit/fly-admin

    Weekly Downloads

    146

    Version

    1.7.1

    License

    MIT

    Unpacked Size

    103 kB

    Total Files

    36

    Last publish

    Collaborators

    • triplit_phil
    • willataspen
    • matlin95