Automated commit at Sun Mar 31 10:00:00 CEST 2024

This commit is contained in:
Mischa van den Burg 2024-03-31 10:00:00 +02:00
parent 04609866a7
commit d566c416b0
4 changed files with 35 additions and 7 deletions

View File

@ -1,9 +1,15 @@
## To watch
#moc
## To Consume
[[What Have Namespaces Done for You Lately?]]
# Notes
## Containers
[[User Space and Kernel Space]]
[[Containerized applications can do syscalls directly to the Linux Kernel]]
[[Linux Kernel also has namespaces for isolation]]
@ -12,19 +18,19 @@
[[Podman and docker commands are exactly the same]]
# Networking
## Networking
[[Network Policies]]
[[Generating TLS certificate for testing on Kubernetes]]
## Other
[[CKS Tips from Sander]]
## Content
## Content Generated
[[I'm better at Network Policies than I thought]]

View File

@ -0,0 +1,8 @@
Even with emptyDir volumes, all containers can access the same volumes in a pod if they are mounted.
## Links:
202403300532

View File

@ -5,6 +5,6 @@ I've always struggled with feeling hungry all the time, even during the past cou
## Links:
**related to**:: [[hunger-and-suffering]], [[caloric restriction]], [[weight-loss]]
**related to**:: [[Disentangling Hunger and Suffering]], [[caloric restriction]], [[weight-loss]]
202403290856

View File

@ -0,0 +1,14 @@
User space are the applications and libraries.
Kernel space consists of the Syscall Interface, Kernel and Hardware.
Syscall is the interface to connect with the Linux kernel. Can be seen as the API towards the Linux kernel. The kernel then interfaces with the hardware.
Syscall interface provides functions such as getpid() and reboot() to libraries or applications.
Containerized applications can do direct sys calls to the syscall interface.
Links:
202403241143