mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 13:50:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			275 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			275 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: elasticsearch_discovery build push all
 | |
| 
 | |
| TAG = 1.0
 | |
| 
 | |
| build:
 | |
| 	docker build -t kubernetes/elasticsearch:$(TAG) .
 | |
| 
 | |
| push:
 | |
| 	docker push kubernetes/elasticsearch:$(TAG)
 | |
| 
 | |
| elasticsearch_discovery:	
 | |
| 	go build elasticsearch_discovery.go
 | |
| 
 | |
| all:	elasticsearch_discovery build push 
 |