mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-24 23:36:46 +00:00
42 lines
650 B
Markdown
42 lines
650 B
Markdown
## Brand new versions!
|
|
|
|
- Kubernetes 1.8
|
|
- Docker Engine 17.10
|
|
- Docker Compose 1.16
|
|
|
|
|
|
.exercise[
|
|
|
|
- Check all installed versions:
|
|
```bash
|
|
kubectl version
|
|
docker version
|
|
docker-compose -v
|
|
```
|
|
|
|
]
|
|
|
|
---
|
|
|
|
class: extra-details
|
|
|
|
## Kubernetes and Docker compatibility
|
|
|
|
- Kubernetes only validates Docker Engine versions 1.11.2, 1.12.6, 1.13.1, and 17.03.2
|
|
|
|
--
|
|
|
|
class: extra-details
|
|
|
|
- Are we living dangerously?
|
|
|
|
--
|
|
|
|
class: extra-details
|
|
|
|
- "Validates" = continuous integration builds
|
|
|
|
- The Docker API is versioned, and offers strong backward-compatibility
|
|
|
|
(If a client uses e.g. API v1.25, the Docker Engine will keep behaving the same way)
|