8000 GitHub - synpse-hq/action at v1
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

synpse-hq/action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Synpse application update action

Synpse is an end-to-end platform to manage your device fleet that can grow to hundreds of thousands of devices, perform OTA software updates, collect metrics, logs, deploy your containerized applications and facilitate tunnel-based SSH access to any of your device. You can find a Quick Start here.

This action interacts with Synpse platform to perform "git push to update" workflows. If you don't have a Synpse account, you can create one here: https://cloud.synpse.net/.

Inputs

project

Required - name of the project where the application containers will be deployed. You can create yours here: https://cloud.synpse.net/

namespace

Required - namespace name. Default default

filepath

Required - path to the file where the application manifest is placed. You can read more about application manifests here: https://docs.synpse.net/synpse-core/applications/overview

controllerUri

Required - URL of the Synpse server. Default https://cloud.synpse.net/api

Example usage

Example workflow needs to:

  1. Have the actions/checkout@v1 action which provides the files (with your application yaml to the action)
  2. Have the synpse-hq/action@v0.1 action which does the actual deployment

Example can be found in the push-to-deploy-example repository, here's the workflow yaml:

on: [push]

jobs:
  deploy-app:
    runs-on: ubuntu-latest
    name: Synpse application update
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      - name: Deploy or update application to Synpse
        id: hello
        uses: synpse-hq/action@v0.1
        with:
          key: ${{ secrets.SYNPSE_ACCESS_KEY }}
          project: karolis-homelab
          namespace: default
          filepath: app.yaml          

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published
0