summaryrefslogtreecommitdiffstats
path: root/client/go/cmd/status.go
blob: 93316b7b6de96cde6dd98b286a9bbee78caac92e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// vespa status command
// author: bratseth

package cmd

import (
	"github.com/spf13/cobra"
	"github.com/vespa-engine/vespa/client/go/vespa"
)

func init() {
	rootCmd.AddCommand(statusCmd)
	statusCmd.AddCommand(statusQueryCmd)
	statusCmd.AddCommand(statusDocumentCmd)
	statusCmd.AddCommand(statusDeployCmd)
}

var statusCmd = &cobra.Command{
	Use:               "status",
	Short:             "Verify that a service is ready to use (query by default)",
	Example:           `$ vespa status query`,
	DisableAutoGenTag: true,
	SilenceUsage:      true,
	Args:              cobra.MaximumNArgs(1),
	RunE: func(cmd *cobra.Command, args []string) error {
		return waitForService(vespa.QueryService, 0)
	},
}

var statusQueryCmd = &cobra.Command{
	Use:               "query",
	Short:             "Verify that the query service is ready to use (default)",
	Example:           `$ vespa status query`,
	DisableAutoGenTag: true,
	SilenceUsage:      true,
	Args:              cobra.ExactArgs(0),
	RunE: func(cmd *cobra.Command, args []string) error {
		return waitForService(vespa.QueryService, 0)
	},
}

var statusDocumentCmd = &cobra.Command{
	Use:               "document",
	Short:             "Verify that the document service is ready to use",
	Example:           `$ vespa status document`,
	DisableAutoGenTag: true,
	SilenceUsage:      true,
	Args:              cobra.ExactArgs(0),
	RunE: func(cmd *cobra.Command, args []string) error {
		return waitForService(vespa.DocumentService, 0)
	},
}

var statusDeployCmd = &cobra.Command{
	Use:               "deploy",
	Short:             "Verify that the deploy service is ready to use",
	Example:           `$ vespa status deploy`,
	DisableAutoGenTag: true,
	SilenceUsage:      true,
	Args:              cobra.ExactArgs(0),
	RunE: func(cmd *cobra.Command, args []string) error {
		return waitForService(vespa.DeployService, 0)
	},
}