mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-27 14:54:05 -06:00
Automated commit at Sun Mar 31 10:00:00 CEST 2024
This commit is contained in:
parent
04609866a7
commit
d566c416b0
@ -1,9 +1,15 @@
|
|||||||
## To watch
|
#moc
|
||||||
|
|
||||||
|
## To Consume
|
||||||
|
|
||||||
[[What Have Namespaces Done for You Lately?]]
|
[[What Have Namespaces Done for You Lately?]]
|
||||||
|
|
||||||
# Notes
|
# Notes
|
||||||
|
|
||||||
|
## Containers
|
||||||
|
|
||||||
|
[[User Space and Kernel Space]]
|
||||||
|
|
||||||
[[Containerized applications can do syscalls directly to the Linux Kernel]]
|
[[Containerized applications can do syscalls directly to the Linux Kernel]]
|
||||||
|
|
||||||
[[Linux Kernel also has namespaces for isolation]]
|
[[Linux Kernel also has namespaces for isolation]]
|
||||||
@ -12,19 +18,19 @@
|
|||||||
|
|
||||||
[[Podman and docker commands are exactly the same]]
|
[[Podman and docker commands are exactly the same]]
|
||||||
|
|
||||||
# Networking
|
## Networking
|
||||||
|
|
||||||
[[Network Policies]]
|
[[Network Policies]]
|
||||||
|
|
||||||
[[Generating TLS certificate for testing on Kubernetes]]
|
[[Generating TLS certificate for testing on Kubernetes]]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Other
|
||||||
|
|
||||||
[[CKS Tips from Sander]]
|
[[CKS Tips from Sander]]
|
||||||
|
|
||||||
|
## Content Generated
|
||||||
|
|
||||||
|
|
||||||
## Content
|
|
||||||
|
|
||||||
[[I'm better at Network Policies than I thought]]
|
[[I'm better at Network Policies than I thought]]
|
||||||
|
|
||||||
|
|||||||
8
content/Containers can share volumes in the same pod.md
Normal file
8
content/Containers can share volumes in the same pod.md
Normal 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
|
||||||
@ -5,6 +5,6 @@ I've always struggled with feeling hungry all the time, even during the past cou
|
|||||||
|
|
||||||
## Links:
|
## Links:
|
||||||
|
|
||||||
**related to**:: [[hunger-and-suffering]], [[caloric restriction]], [[weight-loss]]
|
**related to**:: [[Disentangling Hunger and Suffering]], [[caloric restriction]], [[weight-loss]]
|
||||||
|
|
||||||
202403290856
|
202403290856
|
||||||
14
content/User Space and Kernel Space.md
Normal file
14
content/User Space and Kernel Space.md
Normal 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
|
||||||
Loading…
Reference in New Issue
Block a user