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

Add badges to Readme.MD #12

Merged
merged 2 commits into from
Feb 1, 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
File renamed without changes.
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
FROM golang:1.21 as builder

ARG GITHUB_TOKEN

WORKDIR /workspace
COPY go.mod go.mod
COPY go.sum go.sum
Expand All @@ -16,4 +14,4 @@ WORKDIR /app

COPY --from=builder /workspace/manager .

ENTRYPOINT ["/app/manager"]
ENTRYPOINT ["/app/manager"]
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
<img alt="logo" width="700" src="https://abload.de/img/watchtower32hej7.png">
</picture>

![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/nccloud/watchtower)
![GitHub Release](https://img.shields.io/github/v/release/nccloud/watchtower)
[![Go Reference](https://pkg.go.dev/badge/github.com/NCCloud/watchtower.svg)](https://pkg.go.dev/github.com/NCCloud/watchtower)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/nccloud/watchtower/test.yaml?label=tests)
![GitHub issues](https://img.shields.io/github/issues/nccloud/watchtower)
![GitHub License](https://img.shields.io/github/license/nccloud/watchtower)

## 📖 General Information

Watchtower is CRD-based Kubernetes operator that monitors changes to resources and exports them to one or more endpoints,
Expand Down
Loading