mirror of
				https://github.com/kelseyhightower/kubernetes-the-hard-way.git
				synced 2025-11-04 10:12:35 +03:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
		
			352 B
		
	
	
	
		
			SYSTEMD
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			352 B
		
	
	
	
		
			SYSTEMD
		
	
	
	
	
	
| 
								 | 
							
								[Unit]
							 | 
						||
| 
								 | 
							
								Description=containerd container runtime
							 | 
						||
| 
								 | 
							
								Documentation=https://containerd.io
							 | 
						||
| 
								 | 
							
								After=network.target
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								[Service]
							 | 
						||
| 
								 | 
							
								ExecStartPre=/sbin/modprobe overlay
							 | 
						||
| 
								 | 
							
								ExecStart=/bin/containerd
							 | 
						||
| 
								 | 
							
								Restart=always
							 | 
						||
| 
								 | 
							
								RestartSec=5
							 | 
						||
| 
								 | 
							
								Delegate=yes
							 | 
						||
| 
								 | 
							
								KillMode=process
							 | 
						||
| 
								 | 
							
								OOMScoreAdjust=-999
							 | 
						||
| 
								 | 
							
								LimitNOFILE=1048576
							 | 
						||
| 
								 | 
							
								LimitNPROC=infinity
							 | 
						||
| 
								 | 
							
								LimitCORE=infinity
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								[Install]
							 | 
						||
| 
								 | 
							
								WantedBy=multi-user.target
							 |