summaryrefslogtreecommitdiff
path: root/cmd/podmanV2/healthcheck/run.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-03-31 23:01:19 +0200
committerGitHub <noreply@github.com>2020-03-31 23:01:19 +0200
commit9f5fcc356574b52fd7ad235ea56c30602bbba852 (patch)
tree57645ee943e460b6d613392980e7312af689aa27 /cmd/podmanV2/healthcheck/run.go
parent4d6670421175c46682b0584b190734e3542350c0 (diff)
parenta84c006368ba5a2e43596d4da6245e843314c5c0 (diff)
downloadpodman-9f5fcc356574b52fd7ad235ea56c30602bbba852.tar.gz
podman-9f5fcc356574b52fd7ad235ea56c30602bbba852.tar.bz2
podman-9f5fcc356574b52fd7ad235ea56c30602bbba852.zip
Merge pull request #5655 from baude/v2hcrun
podmanv2 enable healthcheck run
Diffstat (limited to 'cmd/podmanV2/healthcheck/run.go')
-rw-r--r--cmd/podmanV2/healthcheck/run.go42
1 files changed, 42 insertions, 0 deletions
diff --git a/cmd/podmanV2/healthcheck/run.go b/cmd/podmanV2/healthcheck/run.go
new file mode 100644
index 000000000..bb2962eaf
--- /dev/null
+++ b/cmd/podmanV2/healthcheck/run.go
@@ -0,0 +1,42 @@
+package healthcheck
+
+import (
+ "context"
+ "fmt"
+
+ "github.com/containers/libpod/cmd/podmanV2/registry"
+ "github.com/containers/libpod/pkg/domain/entities"
+ "github.com/spf13/cobra"
+)
+
+var (
+ healthcheckRunDescription = "run the health check of a container"
+ healthcheckrunCommand = &cobra.Command{
+ Use: "run [flags] CONTAINER",
+ Short: "run the health check of a container",
+ Long: healthcheckRunDescription,
+ Example: `podman healthcheck run mywebapp`,
+ RunE: run,
+ Args: cobra.ExactArgs(1),
+ }
+)
+
+func init() {
+ registry.Commands = append(registry.Commands, registry.CliCommand{
+ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
+ Command: healthcheckrunCommand,
+ Parent: healthCmd,
+ })
+}
+
+func run(cmd *cobra.Command, args []string) error {
+ response, err := registry.ContainerEngine().HealthCheckRun(context.Background(), args[0], entities.HealthCheckOptions{})
+ if err != nil {
+ return err
+ }
+ if response.Status == "unhealthy" {
+ registry.SetExitCode(1)
+ }
+ fmt.Println(response.Status)
+ return err
+}