mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	Summary: Add phabricator example Reviewers: davidopp Reviewed By: davidopp Subscribers: #kubernetes Projects: #kubernetes Differential Revision: http://107.178.210.6/D5
		
			
				
	
	
		
			9 lines
		
	
	
		
			378 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			378 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
echo "Deleting Authenticator replication controller" && kubectl stop rc authenticator-controller
 | 
						|
echo "Deleting Phabricator service" && kubectl delete -f phabricator-service.json
 | 
						|
echo "Deleting Phabricator replication controller" && kubectl stop rc phabricator-controller
 | 
						|
 | 
						|
echo "Delete firewall rule" && gcloud compute firewall-rules delete -q phabricator-node-80
 | 
						|
 |