Create Jira Issues from Enforce CloudEvents
This documentation is related to Chainguard Enforce. You can request access to the product by selecting Chainguard Enforce on the inquiry form.
Chainguard Enforce for Kubernetes can send CloudEvents as webhook requests that you can subscribe to and use to do things like generate alerts, create Jira issues, post messages to Slack channels, and more. This tutorial is meant to serve as a companion to the Enforce Events jira-issue-opener example application. It will guide you through creating and deploying a Google Cloud Run service that will open new Jira issues for Enforce policy change events.
You can also opt to run the example application elsewhere. As long as it is publicly accessible to the Enforce CIDR network ranges, you will be able to receive CloudEvents and create Jira issues with the example application. If you opt to deploy the demo outside of Cloud Run, you can skip to the Subscribing to Chainguard Enforce CloudEvents section, provided you know the publicly accessible URL to your deployed instance of the demo.
Prerequisites
To follow along with this guide, it is assumed that you have a Kubernetes cluster with Chainguard Enforce enabled. If you need to set this up, follow our Getting Started guide to create a local kind cluster that you can use for experimentation.
You will also need:
- The
gcloud
CLI and a Google Cloud account if you choose to run the application using Cloud Run. terraform
to configure a Google Cloud service account, IAM permissions, and deploy the Cloud Run service. If you are running the application elsewhere, you can ignore this requirement.- An Atlassian API Token. Note that this guide assumes you are using the cloud version of Jira.
chainctl
in order to create a subscription webhook endpoint.- An Enforce or Sigstore policy and a Kubernetes namespace that you can use to test Enforce’s admission control webhook.
Steps Overview
Deploying the demo application consists of the following steps:
- Cloning the example repository
- Running
terraform
to provision resources in your Google Cloud account - Creating a secret in your Google Cloud account to store your Jira API token
- Deploying a pod that will violate a policy
- Subscribing to Enforce CloudEvents
- Configuring an Enforce policy that generates GitHub issues
Cloning the Demo Application
To clone the demo application, git clone
the enforce-events
repository and move into the newly created directory using the following commands:
cd ~
git clone https://github.com/chainguard-dev/enforce-events.git
cd enforce-events/jira-issue-opener/iac
Next you will run Terraform to deploy the demo application.
Running Terraform
Inside the iac
directory you will find a Terraform module that builds the demo application and configures your Google Cloud project settings.
Run the terraform init
command to download all the required providers:
terraform init
Initializing provider plugins...
- Finding latest version of ko-build/ko...
- Finding latest version of hashicorp/google...
- Installing ko-build/ko v0.0.7...
- Installed ko-build/ko v0.0.7 (self-signed, key ID 36A8C1D1056CC508)
- Installing hashicorp/google v4.61.0...
- Installed hashicorp/google v4.61.0 (signed by HashiCorp)
. . .
Now you can generate an execution plan. You will need a few pieces of information to input as variables:
group
: your Chainguard group ID. Usechainctl iam groups describe <your group> -o json |jq -r '.id'
to retrieve it.project_id
: your Google Cloud project ID. Use the human readable name for the project as opposed to the numeric identifier.jira_user
: your Jira username that you will use to login and create issues.jira_project
: the project key for your Jira project. This is distinct from the project name. You can find the key under thehttps://<your-domain>.atlassian.net/jira/settings/projects/manage
page.jira_url
: this is the URL to your Jira instance. It should be of the formhttps://<your-domain>.atlassian.net
. You can find your URL under the Atlassian Account Products page.issue_type
: the kind of issue you want to create for Enforce policy violation events. The default here isTask
, but you can substitute in your own issue type if you have created one.
Once you have all the information gathered, run the terraform plan
command:
terraform plan \
-var "jira_user=<username>" \
-var "jira_project=<project key>" \
-var "jira_url=<your domain.atlassian.net>" \
-var "group=<chainguard group ID>" \
-var "project_id=<gcloud project ID>" \
-var "name=enforce-events" \
-var "issue_type=Task" \
-out enforce-events.plan
You will receive output like the following showing Terraform’s execution plan:
. . .
# google_cloud_run_service.jira-iss will be created
+ resource "google_cloud_run_service" "jira-iss" {
+ autogenerate_revision_name = false
+ id = (known after apply)
+ location = "us-central1"
+ name = "enforce-events-jira-iss-opener"
+ project = "<google project>"
+ status = (known after apply)
. . .
To perform exactly these actions, run the following command to apply:
terraform apply "enforce-events.plan"
Inspect the plan to ensure that the resources that Terraform will create are in line with your Google Cloud project’s settings and IAM permissions. Once you are satisfied with the plan, apply it:
terraform apply enforce-events.plan
Terraform will run the module and you will receive output like the following:
ko_build.image: Creating...
google_secret_manager_secret.jira-token: Creating...
google_service_account.jira-iss-opener: Creating...
. . .
Outputs:
secret-command = "echo -n YOUR JIRA TOKEN | gcloud --project <google project> secrets versions add enforce-events-jira-token --data-file=-"
url = "https://enforce-events-jira-iss-opener-ntfj7ezpja-uc.a.run.app"
Note down the url
and the secret-command
.
Configuring Google Cloud with your Atlassian API Token
With the output from the terraform apply
step, you can now run the echo
command to configure Google Cloud with your Atlassian API token.
Substitute your API token in place of the <your api token>
string and run the following command:
echo -n <your api token> | gcloud --project <google project> secrets versions add enforce-events-jira-token --data-file=-
This configures your Google Cloud project with your token so that it is available to the demo application when it is invoked on Cloud Run.
Subscribing to Chainguard Enforce CloudEvents
Now that you’ve deployed the demo application, the next step is to register it as a CloudEvents receiver for the Enforce webhook.
Run the following chainctl
command to create a Chainguard Enforce webhook subscription:
chainctl events subscriptions create \
--group <your chainguard group> \
https://<url from terraform>
You will receive output showing the ID of the subscription and the webhook endpoint, like the following:
ID | SINK
----------------------------------------+-----------------------------
<chainguard group ID>/0dfbc3c8b89e0147 | https://<url from terraform>
Enforce will now send events to the application that is running on Cloud Run at the specified URL.
Deploying a Pod That Will Violate a Policy
In this step you will create a Kubernetes deployment that uses an unsigned image. Run the following to deploy nginx
into your cluster:
kubectl create deployment nginx --image=nginx
Now that you have a workload running, you can can add an Enforce policy, and the deployment will trigger a policy violation event which, in turn, will create a Jira issue.
Configuring an Enforce Policy
Before you can configure Chainguard Enforce to open Jira issues for policy violations, you will need to ensure that you have Enforce configured with a policy that you can test. Make sure you have a cluster registered with Enforce using the chainctl clusters ls
command. If you do not, visit our Getting Started with Enforce Guide to create and register a cluster.
Once you have a cluster enrolled with Enforce, create the following policy from the Getting Started guide:
cat > sample-policy.yaml <<EOF
apiVersion: policy.sigstore.dev/v1beta1
kind: ClusterImagePolicy
metadata:
name: sample-policy
spec:
images:
- glob: "ghcr.io/chainguard-dev/*/*"
- glob: "ghcr.io/chainguard-dev/*"
- glob: "index.docker.io/*"
- glob: "index.docker.io/*/*"
- glob: "cgr.dev/chainguard/**"
authorities:
- keyless:
url: https://fulcio.sigstore.dev
identities:
- issuerRegExp: ".*"
subjectRegExp: ".*"
EOF
Apply it using chainctl
:
chainctl policies apply \
-f sample-policy.yaml --group=<your chainguard group>
Depending on your Kubernetes cluster, applying the policy may generate multiple Jira issues. For example, if you are using kind
, the control plane images are not signed and should create issues.
Once the policy is created, check the logs of your Cloud Run deployment. You may need to edit the service_name
portion of the URL if your service is called something different from enforce-events-jira-iss-opener
.
There should be log entries corresponding to new Jira issues that the demo application created for you:
Now visit your Jira project’s page and to find the newly-created issues. A new issue for the sample policy should appear like the following:
Learn More
Now that you’ve deployed and tested creating issues with the demo application, you can continue to develop it to create issues for other Enforce event types. Review our Chainguard Enforce Events page for a complete reference of event types that Enforce emits.
To learn how to extend the demo application to check for other event types, check out the Slack Issue Opener demo in the repository that you cloned at the beginning of this tutorial.
You can edit the Go code in the repository and deploy new versions of it as you add functionality using the same terraform plan
and terraform apply
commands that you ran earlier in this tutorial.