Key Takeaways
●
Docker (Docker CE, containerd, whatever) != containers
●
Containers are just another tech. They need standards.
●
With clusters, containers are (mostly) irrelevant.
Slide 6
Slide 6 text
No content
Slide 7
Slide 7 text
OS API
int * array = malloc(10 * sizeof(int));
if (array == NULL) {
fprintf(stderr, "malloc failed\n");
return(-1);
}