Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 371 Bytes

File metadata and controls

15 lines (11 loc) · 371 Bytes

Pods

k run strigus --image nginx --port 80

# attach to the container pod process
# the changes made inside the session are not persisted due the nature of the container layer fs
k attach my-pod -c my-pod -it

# start a proc inside the container
k exec -it my-pod -- bash
cat /etc/proc/1
  1. limits are calculated in CPU units, 0.5 means half of a CPU core