mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	only set the etcd servers in the apiserver config set the --master= in the global config still need --api_servers= different in kubelet because, ummmm, we do comment out the apiserver config in controller and scheduler, not needed point the proxy to api, not to etcd
		
			
				
	
	
		
			19 lines
		
	
	
		
			420 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			420 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
[Unit]
 | 
						|
Description=Kubernetes Kube-Proxy Server
 | 
						|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
 | 
						|
After=network.target
 | 
						|
 | 
						|
[Service]
 | 
						|
EnvironmentFile=-/etc/kubernetes/config
 | 
						|
EnvironmentFile=-/etc/kubernetes/proxy
 | 
						|
ExecStart=/usr/bin/kube-proxy \
 | 
						|
	    $KUBE_LOGTOSTDERR \
 | 
						|
	    $KUBE_LOG_LEVEL \
 | 
						|
	    $KUBE_MASTER \
 | 
						|
	    $KUBE_PROXY_ARGS
 | 
						|
Restart=on-failure
 | 
						|
LimitNOFILE=65536
 | 
						|
 | 
						|
[Install]
 | 
						|
WantedBy=multi-user.target
 |