dependency load
Load a series of dependency definitions from a YAML file
codepipes dependency load
Load a series of dependency definitions from a YAML file
Synopsis
Load a series of dependency definitions from a YAML file
The YAML file is to contain a list of dependencies and has this syntax:
- name: Postgresql
description: "A PostgreSQL database"
inputs:
version: "PostgreSQL version required"
outputs:
PGHOST: "pgsql host"
PGPORT: "pgsql port"
PGUSER: "pgsql user name"
PGPASSWORD: "pgsql password" - name: MessageQueue
description: "A messaging queue"
outputs:
url: "Queue URL"
If a dependency already exists with the same name, it will be updated based
on the attributes in the file.
codepipes dependency load filename [flags]
Options inherited from parent commands
--config string Config file (default is $HOME/.codepipes.yml)
-D, --debug Turn on debug mode
--endpoint string Endpoint where Code Pipes APIs are running (e.g. api.codepipes.io)
--help Show help for command
--org string Organization ID
--sslmode Use https instead of http when calling the API endpoint. Use --sslmode=false to use http. (default true)
--webapp string Endpoint for Code Pipes web application. If not set, is determined by replacing 'api' prefix on endpoint flag with 'dash'
SEE ALSO
- codepipes dependency - Subcommands related to Dependency management
Updated about 1 year ago