duanwucui / Docker-and-Kubernetes-for-Java-Developers

Docker and Kubernetes for Java Developers, published by Packt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker and Kubernetes for Java Developers

This is the code repository for Docker and Kubernetes for Java Developers. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

This book will start by introducing Docker and delve deep into its networking and persistent storage concepts. You will then proceed to learn how to refactor monolith application into separate services by building an application and then packaging it into Docker containers. Next, you will create an image containing Java Enterprise Application and later run it using Docker. Moving on, the book will focus on Kubernetes and its features and you will learn to deploy a Java application to Kubernetes using Maven and monitor a Java application in production. By the end of the book, you will get hands-on with some more advanced topics to further extend your knowledge about Docker and Kubernetes.

Instructions and Navigation

All of the code is organized into folder.

The code will look like the following:

 {
"apiVersion": "v1",
"kind": "Pod",
"metadata":{
"name": ”rest_service”,
"labels": {
"name": "rest_service"
}
},
"spec": {
"containers": [{
"name": "rest_service",
"image": "rest_service",
"ports": [{"containerPort": 8080}],
}]
}
}

Related Products

About

Docker and Kubernetes for Java Developers, published by Packt

License:MIT License


Languages

Language:Java 99.0%Language:Dockerfile 1.0%