Cloud customer?
Start for Free>
Upgrade in MyJFrog >
What's New in Cloud >





You are viewing an old version of this page. View thecurrent version.

Compare with CurrentView Page History

« PreviousVersion 7Next »

Overview

2022世界杯阿根廷预选赛赛程typically contain information needed fora step in a pipeline to execute and can also be used to store information produced by a step. Resources defined should be unique across all the pipelines. Because of that they also provide the way to link pipelines.


Commonly used examples of a resource are:

  • A repository in your source code control system (e.g., GitHub)
  • A file on a remote file server
  • A Docker image
  • A release bundle for JFrog Distribution
  • A cluster for container orchestration


Page Contents

Resource Types


Resource Definition

2022世界杯阿根廷预选赛赛程are defined in a pipeline config under the2022世界杯阿根廷预选赛赛程tag, as shown below. Not all sections are required by all resources.

resources: - name:  type:  configuration: 
Tag 描述of usage Required/Optional
name

Analphanumeric string (underscores are permitted) that makes it easy to infer what the resource represents, e.g.,aws_credsto represent AWS keys. This name is used to refer to the resource in steps, and must be unique across all repositories in your JFrog Pipelines environment.

Required
type

Name of the resource type that this resource is an instance of.Alist of all types is below.

Required
configuration

Specifies configuration settings, which vary for eachtypeof resource.

Commonly included in this block is a setting that assigns by its name anintegrationthrough which the resource will be accessed. The integration must be compatible with thetypeof the resource. The name of the integration field will vary by the resource.

Required


Using Resources

Resources can be inputs and outputs of steps in a pipeline. Resources may be from the same pipeline source as the pipeline or another pipeline source in the same project and environment. If the resource is from a multi-branch pipeline source, either the same as the pipeline or a different source, and a different branch than the pipeline,branchmust included in the resource ininputResourcesor outputResources. To use a resource from a single-branch pipeline,branchshould not be specified.

They can be used by steps in these ways:

Inputs

When specified in a step in theinputResources section, theresource is an input for a step. The resourcecan also be referred to by its name as an argument in shell commands that the step executes.

A resource version will automatically initiate the execution of that step that has that resource as input resource.

For example, when a Step specifies aGitReporesource, any new code commit to that Git repository will automatically cause that step to execute.

If a step that specifies animageresource andtriggeris set tofalse, the step is executed, it will use the latest version of the resource during the execution.

Steps that have input resources from other pipelines trigger a run of the pipeline when the resource is updated. By default, input resources that were an output resource of another step in the same run will run whether or not the resource is updated. To skip steps in the same run when input resources are not updated,newVersionOnlymay be added to the input resource.

Outputs

When specified as the output of a step in anoutputResourcestag, the resource receives the output of the native step.The resourcecan also be referred to by its name as an argument in shell commands that the step executes.

Environment Variables

A step that specifies a resource ininputresourcescan access the resource and its attributes through environment variables. The form of the environment variable is:

res__

You can also access an integration that is specified in the resource through an environment variable, whose form is:

res___

For example, if the definition of aGitReporesource namedapp_gitrepois:

resources: - name: app_gitRepo type: GitRepo configuration: path: user1/repo1 gitProvider: myGitProvider


Then the following environment variables will be available to a step that uses theapp_gitRepoas an input:

Environment Variable Result 描述
res_app_gitRepo_path user1/repo1 Returns thepathattribute of theapp_gitReporesource
res_app_gitRepo_gitProvider_url
Returnsurlof the Git Provider of theapp_gitReporesource


The example step shows how these environment variables might be used to send notifications:

steps: - name: build_app type: MvnBuild configuration: sourceLocation: . mvnCommand: clean install configFileLocation: . inputResources: - name: app_gitRepo # Use the app_gitRepo resource execution: onSuccess: - send_notification notifySlack --text "Maven build completed for $res_app_gitRepo_path at $res_app_gitRepo_gitProvider_url" onFailure: - send_notification notifySlack --text "Maven build FAILED for $res_app_gitRepo_path at $res_app_gitRepo_gitProvider_url"

Arrays

For arrays within resources (e.g.VmCluster):

res___len (this tells you how many entries in array)
res___0
res___1
res___2

For object arrays within resources (e.g. DistributionRule):

res___len (this tells you how many entries in array)
res___0_
res___1_

State Information

Steps can store any key-value pair data in a resource using thewrite_outpututility function. Those values held by the resource can then be referencedas environment variables by any subsequently executing step that uses that resource as an input. In this way, a step can pass information to another step in the run of the pipeline.

The environment variable for the stored value will be of the formres__.

For example, the followingwrite_outputcommand:

write_output myResource"description=\"hello world\""

will store the string value ofdescriptionin the resource. Any step can then access that value stored inmyResourcethrough the environment variable$res_myResource_description.

For more information, seeCreating Stateful Pipelines.




Resource types

这些类型的资源JFrog Pipeli2022世界杯阿根廷预选赛赛程nes supports:

  • No labels
Copyright © 2023 JFrog Ltd.