Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Actions migration #28

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading