Skip to content

Commit

Permalink
chore: add docker hub image link
Browse files Browse the repository at this point in the history
  • Loading branch information
mamin11 committed Nov 21, 2024
1 parent ff0e487 commit 469b031
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM openjdk:17-alpine
VOLUME /tmp
COPY target/watcher-0.0.1-SNAPSHOT.jar watcher-0.0.1-SNAPSHOT.jar
COPY target/watcher-v1.0.0.jar watcher-v1.0.0.jar
EXPOSE 8081
ENTRYPOINT ["java","-jar","/watcher-0.0.1-SNAPSHOT.jar"]
ENTRYPOINT ["java","-jar","/watcher-v1.0.0.jar"]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Kubernetes Event Watcher is a Spring Boot application that monitors Kubernetes e
- Sends notifications to Slack and email.
- Configurable via environment variables, ConfigMap, and Secret.

Docker image available at: [https://hub.docker.com/r/mamin11/kubernetes-watcher/tags](https://hub.docker.com/r/mamin11/kubernetes-watcher/tags)


## Prerequisites

- Java 11 or higher
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
</parent>
<groupId>mamin.k8s</groupId>
<artifactId>watcher</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>v1.0.0</version>
<name>kubernetes-watcher</name>
<description>Demo project for Spring Boot</description>
<description>Watch Kubernetes Events and Send notifications</description>
<url/>
<licenses>
<license/>
Expand Down

0 comments on commit 469b031

Please sign in to comment.