diff --git a/Dockerfile b/Dockerfile index 2fd7e63..a475447 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +ENTRYPOINT ["java","-jar","/watcher-v1.0.0.jar"] \ No newline at end of file diff --git a/README.md b/README.md index 55820c9..f17f786 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pom.xml b/pom.xml index f1eb544..3fef240 100644 --- a/pom.xml +++ b/pom.xml @@ -10,9 +10,9 @@ mamin.k8s watcher - 0.0.1-SNAPSHOT + v1.0.0 kubernetes-watcher - Demo project for Spring Boot + Watch Kubernetes Events and Send notifications