27 lines
		
	
	
		
			689 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			689 B
		
	
	
	
		
			Go
		
	
	
	
| package main
 | |
| 
 | |
| import (
 | |
| 	"github.com/containers/libpod/cmd/podman/cliconfig"
 | |
| 	"github.com/spf13/cobra"
 | |
| )
 | |
| 
 | |
| var healthcheckDescription = "Manage health checks on containers"
 | |
| var healthcheckCommand = cliconfig.PodmanCommand{
 | |
| 	Command: &cobra.Command{
 | |
| 		Use:   "healthcheck",
 | |
| 		Short: "Manage Healthcheck",
 | |
| 		Long:  healthcheckDescription,
 | |
| 		RunE:  commandRunE(),
 | |
| 	},
 | |
| }
 | |
| 
 | |
| // Commands that are universally implemented
 | |
| var healthcheckCommands []*cobra.Command
 | |
| 
 | |
| func init() {
 | |
| 	healthcheckCommand.AddCommand(healthcheckCommands...)
 | |
| 	healthcheckCommand.AddCommand(getHealthcheckSubCommands()...)
 | |
| 	healthcheckCommand.SetUsageTemplate(UsageTemplate())
 | |
| 	rootCmd.AddCommand(healthcheckCommand.Command)
 | |
| }
 |