6.Kubernetes Security

Setup

Minikube

If you are using Minikube then you need to follow these steps to use local docker container images:

```shell script minikube start eval $(minikube docker-env) ./gradlew docker

To see the exposed url for a service in Minikube just use:

```shell script
minikube service list

Docker for Windows/Mac

If you are using Docker for Windows or Mac then the integrated single node Kubernetes automatically can use local container images for deployments.

Deploy Images to Kubernetes

If you have docker installed you can work with building local docker images yourself and deploy these to Kubernetes.

As alternative you may also just use the corresponding container images already available remotely:

Use tags latest or 1.0.

Labs

Last updated