An open API service indexing awesome lists of open source software.

https://github.com/albertoimpl/hello-java-kubernetes


https://github.com/albertoimpl/hello-java-kubernetes

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# hello-java-kubernetes

Build the image:

```bash

./gradlew bootBuildImage --imageName=albertoimpl/hello-java
```

or:

```bash
pack set-default-builder paketobuildpacks/builder:base
pack build albertoimpl/hello-java
```

Push it to a registry:

```bash
docker push albertoimpl/hello-java
```

Create a Kubernetes cluster:

```bash
kind create cluster
```

Deploy it into Kubernetes:

```bash
kubectl apply -f k8s/
```