Skip to content

Commit

Permalink
Merge pull request #28 from uswitch/gha_migration
Browse files Browse the repository at this point in the history
GitHub Actions migration
  • Loading branch information
MatteoMori8 authored Jul 2, 2024
2 parents d41f2af + 3832dd0 commit c840fe3
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 21 deletions.
20 changes: 0 additions & 20 deletions .drone.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: push

on: push

permissions:
contents: read
id-token: write

jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: "on"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.18"
- run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/klint .
- uses: actions/upload-artifact@v4
with:
name: bin
path: bin/

docker:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: bin
path: bin/
- name: Login to Quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- id: meta
uses: docker/metadata-action@v5
with:
images: quay.io/uswitch/klint
tags: type=sha,prefix=,format=long
- uses: docker/build-push-action@v6
with:
context: .
labels: ${{ steps.meta.outputs.labels }}
push: true
tags: ${{ steps.meta.outputs.tags }}
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
A tool that listens to changes in Kubernetes resources and runs linting rules against them. Alerts are published
via Slack webhooks to a configurable channel (using an annotation on the object or the object's namespace).

## Table of contents- [klint](#klint)
- [klint](#klint)
- [Table of contents- klint](#table-of-contents--klint)
- [Rationale](#rationale)
- [Building](#building)
- [Using](#using)
- [Rules](#rules)
- [UnsuccessfulExitRule](#unsuccessfulexitrule)
- [ResourceAnnotationRule](#resourceannotationrule)
- [ScrapeNeedsPortsRule](#scrapeneedsportsrule)
- [ValidIAMRoleRule](#validiamrolerule)
- [RequireCronJobHistoryLimits](#requirecronjobhistorylimits)
- [Building](#building-1)
- [Notes](#notes)
- [License](#license)


## Rationale
We started Klint to help us move more production teams over to our Kubernetes infrastructure. It helps us achieve:

Expand Down Expand Up @@ -64,6 +81,10 @@ failure history limits, and that these should both be lower than 10.
$ go build -o bin/klint .
```

## Notes
* *July 2024 -* The `klint` image is now stored in the `uswitch/klint` repository on Quay.
<br>

## License

```
Expand Down
2 changes: 1 addition & 1 deletion kubernetes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
serviceAccountName: klint
containers:
- name: klint
image: registry.usw.co/cloud/klint:{{ .Env.DRONE_COMMIT }}
image: quay.io/uswitch/klint:{{ TAG }}
imagePullPolicy: Always
args:
- --json
Expand Down

0 comments on commit c840fe3

Please sign in to comment.