orthros / workflows-samples

This repository contains samples for Cloud Workflows.

Home Page:https://cloud.google.com/workflows

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Workflows Samples

This repository contains samples for Cloud Workflows.

Overview

All workflow samples are in the src/ directory with the file format *.workflows.{yaml/json}.

The JSON and YAML files have equivalent behavior and functionality. Using JSON vs YAML is a matter of personal preference.

(The .json workflow files are generated from the YAML files.)

How to: Deploy a Workflow

To upload a workflow to Google Cloud, deploy the workflow, replacing the WORKFLOW value with an ID of a workflow seen in the src/ directory.

Deploy a workflow (YAML):

WORKFLOW=myFirstWorkflow
gcloud beta workflows deploy $WORKFLOW --source src/$WORKFLOW.workflows.yaml

Deploy a workflow (JSON):

WORKFLOW=myFirstWorkflow
gcloud beta workflows deploy $WORKFLOW --source src/$WORKFLOW.workflows.json

How to: Deploy and Run a Workflow

To quickly deploy and run a workflow and imediately view the results, run this script, replacing myFirstWorkflow with your workflow name:

WORKFLOW=myFirstWorkflow
gcloud beta workflows deploy $WORKFLOW --source src/$WORKFLOW.workflows.yaml
gcloud beta workflows run $WORKFLOW --format='value(result)' | python -m json.tool

(Experimental) How to provide autocompletion to your workflow file

To provide autocompletion to your workflow file, in an IDE that supports JSON schema (like VS Code), name your file with one of these patterns:

  • workflows.json
  • workflows.yaml
  • workflows.yml
  • *.workflows.json
  • *.workflows.yaml
  • *.workflows.yml

The autocompletion uses the schema from Schema Store:

If there are issues with the schema, please file an issue in this repo.

How to create/edit a sample

To create a create/edit a sample, create or modify a YAML file in the src/ directory.

Then, to generate the equivalent JSON file, run the tojson.sh script.

About

This repository contains samples for Cloud Workflows.

https://cloud.google.com/workflows

License:Apache License 2.0


Languages

Language:Shell 100.0%