---
<dependency>
<groupId>io.dekorate</groupId>
<artifactId>annotations</artifactId>
<version>1.3.1</version>
</dependency>
@KubernetesApplication(name = "helloworld", labels = "app=helloworld")
public class HelloWorld {
@GetMapping("/hello")
@KubernetesService(name = "helloworld-service", labels = "app=helloworld,service=helloworld-service")
public String hello() {
return "Hello, world!";
}
}
mvn clean compile