Getting Started
Instalation
Piper should be deployed in the cluster with Argo Workflows. Piper will create a CRD that Argo Workflows will pick, so install or configure Piper to create those CRDs in the right namespace.
Please check out values.yaml file of the helm chart configurations.
To add piper helm repo run:
After configuring Piper values.yaml, run the following command for installation:
Required Configuration
Ingress
Piper should listen to webhooks from your git provider.
Expose it using ingress or service, then provide the address to piper.webhook.url
as followed:
https://PIPER_EXPOESED_URL/webhook
Checkout values.yaml
Git
Piper will use git for fetching .workflows
folder and receiving events using webhooks.
To pick which git provider you are using provide gitProvider.name
configuration in helm chart (Now only supports GitHub and Bitbucket).
Also configure you organization (Github) or workspace (Bitbucket) name using gitProvider.organization.name
in helm chart.
Git Token Permissions
The token should have access for creating webhooks and read repositories content.
For GitHub configure admin:org
and write:org
permissions in Classic Token.
For Bitbucket configure Repositories:read
, Webhooks:read and write
and Pull requests:read
permissions (for multiple repos use workspace token).
Token
The git token should be passed as secret in the helm chart at gitProvider.token
.
Can be passed as parameter in helm install command using --set piper.gitProvider.token=YOUR_GIT_TOKEN
Alternatively, you can consume already existing secret and fill up piper.gipProvider.existingSecret
.
The key should be name token
. Can be created using
Webhook creation
Piper will create a webhook configuration for you, for the whole organization or for each repo you configure.
Configure piper.webhook.url
the address of piper that exposed with ingress with /webhook
postfix.
For organization level configure: gitProvider.webhook.orgLevel
to true
.
For granular repo webhook provide list of repos at: gitProvider.webhook.repoList
.
Piper implements graceful shutdown, it will delete all the webhooks when terminated.
Status check
Piper will handle status checks for you.
It will notify the GitProvider for the status of Workflow for specific commit that triggered Piper.
For linking provide valid URL of your Argo Workflows server address at: argoWorkflows.server.address
Argo Workflow Server (On development)
Piper will use REST API to communicate with Argo Workflows server for linting or for creation of workflows (ARGO_WORKFLOWS_CREATE_CRD). Please follow this configuration.
To lint the workflow before submitting it, please configure the internal address of Argo Workflows server (for example, argo-server.workflows.svc.cluster.local
) in the field: argoWorkflows.server.address
. Argo will need a token to authenticate. please provide the secret in argoWorkflows.server.token
, Better to pass as a references to a secret in the field argoWorkflows.server.token
.
Skip CRD Creation (On development)
Piper can communicate directly to Argo Workflow using ARGO_WORKFLOWS_CREATE_CRD environment variable, if you want to skip the creation of CRD change argoWorkflows.crdCreation
to false
.