Kubedog CLI utility is a tool that can be used to track what is going on with the specified resource.
NOTE: While kubedog includes a CLI, it provides a minimal interface to access library functions. CLI was created to check library features and for debug purposes. Currently, we have no plans on further improvement of CLI.
There are 4 modes of resource tracking:
- multitrack
- follow
- rollout
- canary
The commands are kubedog multitrack ...
, kubedog follow ...
and kubedog rollout track ...
respectively.
DEPRECATION NOTE: Rollout and follow modes are deprecated to use. Old trackers will remain in the CLI. but they won't receive future support. The reason is: multitracker solves main kubedog task in the more common way.
There is minimal viable support of multitracker in kubedog's CLI. To use multitracker, you need pass a JSON structure to kubedog's STDIN. It resembles golang's MultitrackSpecs
structure (please check library description and source code for details).
For example:
cat << EOF | kubedog multitrack
{
"StatefulSets": [
{
"ResourceName": "mysts1",
"Namespace": "myns"
}
],
"Deployments": [
{
"ResourceName": "mydeploy22",
"Namespace": "myns"
}
]
}
EOF
Multitracker can be used in CI/CD deploy pipeline to make sure that some set of resources is ready or done before proceeding deploy process. In this mode kubedog gives a reasonable error message and ensures to exit with non-zero error code if something wrong with the specified resources. By default, kubedog will fail fast giving user fast feedback about failed resources.
Werf makes use of kubedog multitracker under the hood, so the output is the same as kubedog multitrack ...
CLI invocation, the modes configured using annotations are passed directly to the MultitrackSpec
corresponding options:
In the rollout and follow modes kubedog will print to the screen logs and other information related to the specified resource. Kubedog aimed to give enough information about resource for the end user, so that no additional kubectl invocation needed to debug and see what is going on with the resource. All data related to the resource will be unified into a single stream of events.
Follow mode can be used as simple tail -f
tool, but for kubernetes resources. Users of rollout tracker encouraged to migrate to multitracker, because old rollout-trackers will not receive future support.
Rollout mode can be used in CI/CD deploy pipeline to make sure that some resource is ready or done before proceeding deploy process. In this mode kubedog gives a reasonable error message and ensures to exit with non-zero error code if something wrong with the specified resource.
Kubedog has a low level public methods to get stream of events and logs. These methods can be used to implement different tracking algorithms or trackers
(more details in Custom trackers section).
Also, kubedog provides a ready-to-go trackers that implement most used tracking logic. These trackers are used by kubedog CLI itself.
Tracker aimed to give enough information about resource for the end user, so that no additional kubectl invocation needed to debug and see what is going on with the resource. All data related to the resource will be combined into a single stream of events.
Trackers are using kubernetes informers under the hood, which is a reliable primitive from kubernetes library, instead of using raw watch kubernetes api.
Currently there is a single main tracker available: multitracker. Old follow and rollout trackers are deprecated to use, because multitracker is a more common way to solve the same problems, that follow and rollout trackers aimed to solve.
Multitracker allows tracking multiple resources of multiple kinds at the same time. Multitracker combines all data from all resources into single stream of messages. Also this tracker gives periodical status reports with info about all resources, that are being tracked.
Multitracker is a rollout style tracker (see follow tracker and rollout tracker), so it runs until all specified resources reach a readiness state.
Import package:
import "github.com/werf/kubedog/pkg/trackers/rollout/multitrack"
Available functions:
Multitrack(
kube kubernetes.Interface,
specs MultitrackSpecs,
opts MultitrackOptions
) error
kube
— configured Kubernetes client (see kube.go)specs
— description of objects to trackopts
— multitrack specific options
specs
argument describes what Deployments
, StatefulSets
, DaemonSets
, Jobs
, Canaries
and Generics
to track using MultitrackSpec
or generic.Spec
structure. MultitrackSpec
and generic.Spec
allows to specify different modes of tracking per-resource (such as allowed failures count, log regexp and other):
type MultitrackSpecs struct {
Deployments []MultitrackSpec
StatefulSets []MultitrackSpec
DaemonSets []MultitrackSpec
Jobs []MultitrackSpec
Canaries []MultitrackSpec
Generics []*generic.Spec
}
type MultitrackSpec struct {
ResourceName string
Namespace string
TrackTerminationMode TrackTerminationMode
FailMode FailMode
AllowFailuresCount *int
FailureThresholdSeconds *int
LogRegex *regexp.Regexp
LogRegexByContainerName map[string]*regexp.Regexp
SkipLogs bool
SkipLogsForContainers []string
ShowLogsOnlyForContainers []string
ShowServiceMessages bool
}
type generic.Spec struct {
*resid.ResourceID
Timeout time.Duration
NoActivityTimeout *time.Duration
TrackTerminationMode TrackTerminationMode
FailMode FailMode
AllowFailuresCount *int
ShowServiceMessages bool
HideEvents bool
StatusProgressPeriod time.Duration
}
Multitrack
function is a blocking call, which will return on error or when all resources are ready accordingly to the specified specs options.
For now, we only support Canary resource from Flagger.
It will watch resource Canary while canary promotion is rolling and will break after a successful or failed result.
Follow tracker simply prints to the screen all resource related events. Follow tracker can be used as simple tail -f
tool, but for kubernetes resources. This tracker used to implement follow mode of the CLI.
Import package:
import "github.com/werf/kubedog/pkg/trackers/follow"
Available functions:
TrackPod(
name,
namespace string,
kube kubernetes.Interface, opts tracker.Options
) error
TrackJob(
name,
namespace string,
kube kubernetes.Interface, opts tracker.Options
) error
TrackDeployment(
name,
namespace string,
kube kubernetes.Interface,
opts tracker.Options
) error
TrackDaemonSet(
name,
namespace string,
kube kubernetes.Interface,
opts tracker.Options
) error
TrackStatefulSet(
name,
namespace string,
kube kubernetes.Interface,
opts tracker.Options
) error
name
— name of the resourcenamespace
— namespace of the resourcekube
— configured Kubernetes client (see kube.go)opts
— tracker options (context, timeout, starting time for logs)
These functions run until specified resource is terminated. Error is returned only in exceptional situation or on timeout.
Note: Objects’ related Kubernetes errors such as
CrashLoopBackOff
,ErrImagePull
and others are considered as events. They are printed to the screen and error is not returned in these cases.
Rollout tracker is aimed to be used in the tools for the CI/CD deploy pipeline to make sure that some resource is ready or done before proceeding deploy process. These trackers are used to implement rollout mode of the CLI.
The rollout tracker checks that resource is ready or done (in the case of the Job) before terminating. Resource logs and errors are printed to the screen.
Important differences from the follow tracker are:
- Function may return error when resource is not ready or some userspace error occured in the resource (such as
CrashLoopBackOff
error in Pod). - If function returns
nil
, then it is safe to assume, that resource is ready or done (in the case of a Job).
Import package:
import "github.com/werf/kubedog/pkg/trackers/rollout"
Available functions:
TrackPod(name, namespace string, kube kubernetes.Interface, opts tracker.Options) error
TrackJob(name, namespace string, kube kubernetes.Interface, opts tracker.Options) error
TrackDeployment(name, namespace string, kube kubernetes.Interface, opts tracker.Options) error
TrackDaemonSet(name, namespace string, kube kubernetes.Interface, opts tracker.Options) error
TrackStatefulSet(name, namespace string, kube kubernetes.Interface, opts tracker.Options) error
name
— name of the resourcenamespace
— namespace of the resourcekube
— configured Kubernetes client (see kube.go)opts
— tracker options (context, timeout, starting time for logs)
Task: track deployments tiller-deploy
, coredns
and job myjob
simultaneously until all the resources become ready.
Solution: Multitrack tracker can be used to track multiple resources at once:
package main
import (
"fmt"
"os"
"github.com/werf/kubedog/pkg/kube"
"github.com/werf/kubedog/pkg/tracker"
"github.com/werf/kubedog/pkg/trackers/rollout/multitrack"
)
func main() {
_ = kube.Init(kube.InitOptions{})
err := multitrack.Multitrack(
kube.Kubernetes,
multitrack.MultitrackSpecs{
Deployments: []multitrack.MultitrackSpec{
multitrack.MultitrackSpec{
ResourceName: "tiller-deploy",
Namespace: "kube-system"},
multitrack.MultitrackSpec{
ResourceName: "coredns",
Namespace: "kube-system"},
},
Jobs: []multitrack.MultitrackSpec{
multitrack.MultitrackSpec{
ResourceName: "myjob",
Namespace: "myns"},
},
},
multitrack.MultitrackOptions{}
)
if err != nil {
fmt.Fprintf(
os.Stderr,
"ERROR: resources are not reached ready state: %s",
err
)
os.Exit(1)
}
}
Kubedog defines a Feed
interface for an object that holds callbacks which will be executed on events. User may set only needed callbacks using Feed
.
Kubedog provides convenient helpers for different kind of resources with implemented Track
methods. To create a custom tracker for pod, deployment, statefulset, daemonset or job, one could create feed object with a call to a NewFeed
function, set callbacks and call Track
method to start the feed. Track
method is blocking and will return upon tracking termination.
NewFeed
helpers are available in these packages:
import "github.com/werf/kubedog/pkg/tracker/pod"
import "github.com/werf/kubedog/pqkg/tracker/deployment"
import "github.com/werf/kubedog/pkg/tracker/statefulset"
import "github.com/werf/kubedog/pkg/tracker/daemonset"
import "github.com/werf/kubedog/pkg/tracker/job"
For example, Feed
interface for pod looks like:
type Feed interface {
// callbacks
OnAdded(func() error)
OnSucceeded(func() error)
OnFailed(func(string) error)
OnReady(func() error)
OnEventMsg(func(msg string) error)
OnContainerLogChunk(func(*ContainerLogChunk) error)
OnContainerError(func(ContainerError) error)
OnStatus(func(PodStatus) error)
GetStatus() PodStatus
Track(name, namespace string, kube kubernetes.Interface, opts tracker.Options) error
}
Note that each resource have own Feed
interface because callbacks set can be slightly different for different kinds of resources.
Track
method starts informers and runs callbacks on events. Each callback may return an error with predefined type to interrupt the tracking process with error. An error of type tracker.StopTrack
can be returned to interrupt the tracking process without error (i.e. Track
method of the feed will return err=nil
).
GetStatus
method can be called by any callback at any time to get a status of tracked resource.
For example, let’s create a simple tracker that prints events and status from pod mypod
and exits in case of failure or ready state:
package main
import (
"fmt"
"os"
"github.com/werf/kubedog/pkg/kube"
"github.com/werf/kubedog/pkg/tracker"
"github.com/werf/kubedog/pkg/tracker/pod"
)
func main() {
_ = kube.Init(kube.InitOptions{})
feed := pod.NewFeed()
feed.OnEventMsg(func(msg string) error {
fmt.Printf("Pod event: %s\n", msg)
return nil
})
feed.OnReady(func() error {
fmt.Printf("Pod ready!\n")
fmt.Printf("Pod status: %#v\n", feed.GetStatus())
return tracker.StopTrack
})
feed.OnFailed(func(reason string) error {
return fmt.Errorf("pod failed: %s", reason)
})
feed.OnStatus(func(status pod.PodStatus) error {
fmt.Printf("Pod status: %#v\n", status)
return nil
})
err := feed.Track(
"mypod",
"mynamespace",
kube.Kubernetes,
tracker.Options{}
)
if err != nil {
fmt.Fprintf(os.Stderr, "ERROR: po/mypod tracker failed: %s", err)
os.Exit(1)
}
}
You can ask for support in werf CNCF Slack channel, werf chat in Telegram or simply create an issue.