/tekton-log-archiver

A simple operator for archiving Tekton PipelineRuns to S3

Primary LanguageGoApache License 2.0Apache-2.0

tekton-log-archiver Go Operator

Overview

This operator tracks completed Tekton PipelineRuns and TaskRuns and attempts to archive the logged output of all containers to a storage location.

Why?

You want to remove the runs that are cluttering your UI, but want to keep the logged output

Prerequisites

Getting Started

Cloning the repository

Checkout the Operator repository

$ git clone https://github.com/bigkevmcd/tekton-log-archiver.git
$ cd tekton-log-archiver

Pulling the dependencies

Run the following command

$ go mod tidy

Building the operator

Build the operator image and push it to a public registry, such as quay.io:

$ export IMAGE=quay.io/example-inc/tekton-log-archiver:v0.0.1
$ operator-sdk build $IMAGE
$ docker push $IMAGE

Using the image

# Update the operator manifest to use the built image name (if you are performing these steps on OSX, see note below)
$ sed -i 's|REPLACE_IMAGE|quay.io/example-inc/tekton-log-archiver:v0.0.1|g' deploy/operator.yaml
# On OSX use:
$ sed -i "" 's|REPLACE_IMAGE|quay.io/example-inc/tekton-log-archiver:v0.0.1|g' deploy/operator.yaml

NOTE The quay.io/example-inc/tekton-log-archiver:v0.0.1 is an example. You should build and push the image for your repository.

Installing

You must have Tekton Pipeline installed before installing this operator:

$ kubectl apply -f https://github.com/tektoncd/pipeline/releases/download/v0.9.1/release.yaml

And then you can install the statuses operator with:

$ kubectl apply -f https://github.com/bigkevmcd/operator-statuses/releases/download/v0.0.1/release.yaml

Uninstalling

$ kubectl delete -f https://github.com/bigkevmcd/operator-statuses/releases/download/v0.0.1/release.yaml

Troubleshooting

Use the following command to check the operator logs.

$ kubectl logs tekton-log-archiver

Running Tests

$ go test -v ./...