Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance release for 2022 #594

Open
wants to merge 47 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
21269c5
add uid and gid options for running commands
frederikbosch Oct 24, 2019
f9260e5
fix integration tests
gbmeuk Nov 4, 2019
e1379f3
convert to GOMODULES, remove glide, bump consul
teutat3s Feb 3, 2020
c454f3d
add consul checksum for download verification
teutat3s Feb 3, 2020
7aab61d
more integration test fixes
teutat3s Feb 3, 2020
06dab1c
Bump go version 1.14
teutat3s May 25, 2020
f9f11c7
Bump consul version to 1.7.3
teutat3s May 25, 2020
829a790
First drone yaml
teutat3s May 25, 2020
610fee1
Add consul to drone test via bash script
teutat3s May 25, 2020
8ca6175
Fix coprocess integration test
teutat3s May 25, 2020
e1d05a0
Add integration tests to drone CI
teutat3s May 25, 2020
6ef7e30
Fix integration tests with drone CI
teutat3s May 25, 2020
94497a2
Two drone pipelines
teutat3s May 25, 2020
64cd4b4
Add GitHub release steps to drone
teutat3s May 25, 2020
9107a9c
Fix GitHub release step
teutat3s May 25, 2020
91ed15c
Fix GitHub release step again
teutat3s May 25, 2020
c28eece
Add our build status badge
teutat3s May 25, 2020
1529184
Fix release step
teutat3s May 25, 2020
feb426e
Add github base URL
teutat3s May 25, 2020
bd162c6
Update go dependencies, prometheus.UninstrumentedHandler ->
teutat3s Apr 13, 2022
bfe76f4
Bump go, node, consul, consul-template, alpine versions
teutat3s Apr 13, 2022
ac8df40
Fix lint target for go modules
teutat3s Apr 13, 2022
f257dd7
Update CI, publish to greenbaum/containerpilot
teutat3s Apr 13, 2022
02c046a
Fix test scripts on NixOS, correctly escape double quotes in tests
teutat3s Apr 13, 2022
0eb1281
Add shell.nix
teutat3s Apr 13, 2022
85a1669
lint: staticcheck S1009 should omit nil check
teutat3s Apr 13, 2022
38bc053
lint: staticcheck S1034 assigning the result of
teutat3s Apr 13, 2022
314174d
lint: staticcheck S1023 redundant return / break
teutat3s Apr 13, 2022
bc48806
lint: staticcheck S1039 unnecessary use of
teutat3s Apr 13, 2022
1579be5
lint: staticcheck unnecessary guard around call to
teutat3s Apr 13, 2022
4c50e2c
lint: go vet, literal copies lock value from
teutat3s Apr 13, 2022
3ca312d
lint: staticcheck S1025 should use String()
teutat3s Apr 13, 2022
d666335
lint: go vet, events.Event composite literal uses unkeyed fields
teutat3s Apr 14, 2022
182ea2c
lint: golint is deprecated, replace with staticcheck
teutat3s Apr 14, 2022
9237c89
lint: staticcheck U1000 field / func is unused
teutat3s Apr 14, 2022
5396438
lint: staticcheck ST1005 error strings should not
teutat3s Apr 14, 2022
bd0e51d
lint: staticcheck SA1012 do not pass a nil Context
teutat3s Apr 14, 2022
13075f6
lint: staticcheck SA4006 this value of ip is never
teutat3s Apr 14, 2022
e90eeac
Apply gofmt
teutat3s Apr 14, 2022
154f090
Use correct order of makefile targets for linting
teutat3s Apr 14, 2022
694b9b7
Merge remote-tracking branch 'upstream/master'
teutat3s Apr 14, 2022
5038214
Add nix flake: devshell
teutat3s Oct 25, 2022
ea436c7
Bump min. go version to 1.18, 1.17 is EOL
teutat3s Oct 25, 2022
9b31d52
Support service meta data
teutat3s Oct 25, 2022
8c5e115
Fix linter errors
teutat3s Oct 25, 2022
68e4035
Merge pull request #1 from greenbaum/f/service-meta-data
teutat3s Oct 25, 2022
22bdce4
Replace joyent with tritondatacenter tree-wide
teutat3s Oct 25, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
kind: pipeline
type: exec
name: exec-runner

platform:
os: linux
arch: amd64

steps:
- name: integration-tests
environment:
commands:
- make clean
- make build lint
- make test
- make integration
when:
event:
- pull_request
- push

---
kind: pipeline
type: docker
name: docker-runner

platform:
os: linux
arch: amd64

steps:
- name: prepare-release
image: golang:1.18
commands:
- |
go build \
-o build/containerpilot \
-ldflags \
"-X github.com/greenbaum/containerpilot/version.GitHash=$(git rev-parse --short HEAD) \
-X github.com/greenbaum/containerpilot/version.Version=${DRONE_TAG}"
- mkdir release && cd build && tar -czf ../release/containerpilot-${DRONE_TAG}.tar.gz containerpilot
- cd ../release && sha1sum containerpilot-${DRONE_TAG}.tar.gz > containerpilot-${DRONE_TAG}.sha1.txt
when:
event:
- tag

- name: publish-release
image: plugins/github-release
settings:
api_key:
from_secret: github_api-key
files:
- release/containerpilot-${DRONE_TAG}.tar.gz
- release/containerpilot-${DRONE_TAG}.sha1.txt
title: "New release: version ${DRONE_TAG}"
base_url: greenbaum/containerpilot
when:
event:
- tag
depends_on:
- prepare-release

---
kind: secret
name: github_api-key
get:
path: secret/data/drone/github
name: api-key

13 changes: 13 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# ^ added for shellcheck and file-type detection

# Watch & reload direnv on change
cd devshell || exit
watch_file devshell.toml

if [[ $(type -t use_flake) != function ]]; then
echo "ERROR: use_flake function missing."
echo "Please update direnv to v2.30.0 or later."
exit 1
fi
use flake
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,6 @@ cover.html
# IDE files
.idea
*.iml

# Nix files
.direnv
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## Contributing

ContainerPilot is open source under the [Mozilla Public License 2.0](https://github.com/joyent/containerpilot/blob/master/LICENSE).
ContainerPilot is open source under the [Mozilla Public License 2.0](https://github.com/tritondatacenter/containerpilot/blob/master/LICENSE).

Pull requests on GitHub are welcome on any issue. If you'd like to propose a new feature, it's often a good idea to discuss the design by opening an issue first. We'll mark these as [`proposals`](https://github.com/joyent/containerpilot/issues?q=is%3Aopen+is%3Aissue+label%3Aproposal), and roadmap items will be maintained as [`enhancements`](https://github.com/joyent/containerpilot/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement).
Pull requests on GitHub are welcome on any issue. If you'd like to propose a new feature, it's often a good idea to discuss the design by opening an issue first. We'll mark these as [`proposals`](https://github.com/tritondatacenter/containerpilot/issues?q=is%3Aopen+is%3Aissue+label%3Aproposal), and roadmap items will be maintained as [`enhancements`](https://github.com/tritondatacenter/containerpilot/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement).

Many of our contributors have never contributed to an open source golang project before. If you are looking for a good first contribution, check out the [`help wanted` label](https://github.com/joyent/containerpilot/issues?q=is%3Aopen+is%3Aissue+label%3A"help+wanted"); not that we don't want help anywhere else of course! But these are low-hanging fruit to get started.
Many of our contributors have never contributed to an open source golang project before. If you are looking for a good first contribution, check out the [`help wanted` label](https://github.com/tritondatacenter/containerpilot/issues?q=is%3Aopen+is%3Aissue+label%3A"help+wanted"); not that we don't want help anywhere else of course! But these are low-hanging fruit to get started.

Please make sure you've added tests for any new feature or tests that prove a bug has been fixed. Run `make lint` before submitting your PR. We test ContainerPilot on [TravisCI](https://travis-ci.org/joyent/containerpilot).
Please make sure you've added tests for any new feature or tests that prove a bug has been fixed. Run `make lint` before submitting your PR. We test ContainerPilot on [TravisCI](https://travis-ci.org/tritondatacenter/containerpilot).
23 changes: 14 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
FROM golang:1.9
FROM golang:1.19

ENV CONSUL_VERSION=1.0.0
ENV GLIDE_VERSION=0.12.3
ENV CONSUL_VERSION=1.13.3

RUN apt-get update \
&& apt-get install -y unzip \
&& go get github.com/golang/lint/golint \
&& curl -Lo /tmp/glide.tgz "https://github.com/Masterminds/glide/releases/download/v${GLIDE_VERSION}/glide-v${GLIDE_VERSION}-linux-amd64.tar.gz" \
&& tar -C /usr/bin -xzf /tmp/glide.tgz --strip=1 linux-amd64/glide \
&& curl --fail -Lso consul.zip "https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip" \
&& unzip consul.zip -d /usr/bin
&& go install honnef.co/go/tools/cmd/staticcheck@latest


RUN export CONSUL_CHECKSUM=5370b0b5bf765530e28cb80f90dcb47bd7d6ba78176c1ab2430f56e460ed279c \
&& export archive=consul_${CONSUL_VERSION}_linux_amd64.zip \
&& curl -Lso /tmp/${archive} https://releases.hashicorp.com/consul/${CONSUL_VERSION}/${archive} \
&& echo "${CONSUL_CHECKSUM} /tmp/${archive}" | sha256sum -c \
&& cd /bin \
&& unzip /tmp/${archive} \
&& chmod +x /bin/consul \
&& rm /tmp/${archive}

ENV CGO_ENABLED 0
ENV GOPATH /go:/cp
ENV GOPATH /go
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

*An init system for cloud-native distributed applications that automates the process of service discovery, configuration, and lifecycle management inside the container, so you can focus on your apps.*

[![Build Status](https://travis-ci.org/joyent/containerpilot.svg)](https://travis-ci.org/joyent/containerpilot)
[![MPL licensed](https://img.shields.io/badge/license-MPL_2.0-blue.svg)](https://github.com/joyent/containerpilot/blob/master/LICENSE)
[![GoDoc](https://godoc.org/github.com/joyent/containerpilot?status.svg)](https://godoc.org/github.com/joyent/containerpilot)
[![Build Status](https://drone.greenbaum.cloud/api/badges/greenbaum.cloud/containerpilot/status.svg)](https://drone.greenbaum.cloud/greenbaum.cloud/containerpilot)
[![MPL licensed](https://img.shields.io/badge/license-MPL_2.0-blue.svg)](https://github.com/tritondatacenter/containerpilot/blob/master/LICENSE)
[![GoDoc](https://godoc.org/github.com/tritondatacenter/containerpilot?status.svg)](https://godoc.org/github.com/tritondatacenter/containerpilot)

## What is ContainerPilot?

Orchestration is the automation of the operations of an application. Most application require operational tasks like connecting them to related components ([WordPress needs to know where it's MySQL and Memcached servers are, for example](https://www.joyent.com/blog/wordpress-on-autopilot)), and some applications require special attention as they start up or shut down to be sure they bootstrap correctly or persist their data. We can do all that by hand, but modern applications automate those tasks in code. That's called "orchestration."
Orchestration is the automation of the operations of an application. Most application require operational tasks like connecting them to related components ([WordPress needs to know where it's MySQL and Memcached servers are, for example](https://www.tritondatacenter.com/blog/wordpress-on-autopilot)), and some applications require special attention as they start up or shut down to be sure they bootstrap correctly or persist their data. We can do all that by hand, but modern applications automate those tasks in code. That's called "orchestration."

To make this work, every application needs to do the following (at a minimum):

Expand All @@ -35,11 +35,11 @@ open http://localhost

This application blueprint demonstrates using ContainerPilot to update Nginx upstream configuration at runtime. Try scaling up via `docker-compose scale hello=2 world=3` to see the Nginx configuration updated.

You can also [download](https://github.com/joyent/containerpilot/releases) the latest release of ContainerPilot from GitHub.
You can also [download](https://github.com/tritondatacenter/containerpilot/releases) the latest release of ContainerPilot from GitHub.

## Documentation

Documentation for ContainerPilot and where it fits with the rest of the Triton ecosystem can be found at [www.joyent.com/containerpilot](https://www.joyent.com/containerpilot). The index below links to the documentation in this repo for convenience.
Documentation for ContainerPilot and where it fits with the rest of the Triton ecosystem can be found at [www.tritondatacenter.com/containerpilot](https://www.tritondatacenter.com/containerpilot). The index below links to the documentation in this repo for convenience.

[Lifecycle](./docs/10-lifecycle.md)
- [What is a job?](./docs/10-lifecycle.md#what-is-a-job)
Expand Down Expand Up @@ -100,19 +100,19 @@ Configuration
- [Contributing](./docs/40-support.md#contributing)
- [Backwards compatibility](./docs/40-support.md#backwards-compatibility)

You might also read [our guide building self-operating applications with ContainerPilot](https://www.joyent.com/blog/applications-on-autopilot) and look at the examples below.
You might also read [our guide building self-operating applications with ContainerPilot](https://www.tritondatacenter.com/blog/applications-on-autopilot) and look at the examples below.

## Examples

We've published a number of example applications demonstrating how ContainerPilot works.

- [Applications on autopilot: a guide to how to build self-operating applications with ContainerPilot](https://www.joyent.com/blog/applications-on-autopilot)
- [MySQL (Percona Server) with auto scaling and fail-over](https://www.joyent.com/blog/dbaas-simplicity-no-lock-in)
- [Autopilot Pattern WordPress](https://www.joyent.com/blog/wordpress-on-autopilot)
- [ELK stack](https://www.joyent.com/blog/docker-log-drivers)
- [Node.js + Nginx + Couchbase](https://www.joyent.com/blog/docker-nodejs-nginx-nosql-autopilot)
- [Applications on autopilot: a guide to how to build self-operating applications with ContainerPilot](https://www.tritondatacenter.com/blog/applications-on-autopilot)
- [MySQL (Percona Server) with auto scaling and fail-over](https://www.tritondatacenter.com/blog/dbaas-simplicity-no-lock-in)
- [Autopilot Pattern WordPress](https://www.tritondatacenter.com/blog/wordpress-on-autopilot)
- [ELK stack](https://www.tritondatacenter.com/blog/docker-log-drivers)
- [Node.js + Nginx + Couchbase](https://www.tritondatacenter.com/blog/docker-nodejs-nginx-nosql-autopilot)
- [CloudFlare DNS and CDN with dynamic origins](https://github.com/autopilotpattern/cloudflare)
- [Consul, running as an HA raft](https://github.com/autopilotpattern/consul)
- [Couchbase](https://github.com/autopilotpattern/couchbase)
- [Mesos on Joyent Triton](https://www.joyent.com/blog/mesos-by-the-pound)
- [Nginx with dynamic upstreams](https://www.joyent.com/blog/dynamic-nginx-upstreams-with-containerbuddy)
- [Mesos on Joyent Triton](https://www.tritondatacenter.com/blog/mesos-by-the-pound)
- [Nginx with dynamic upstreams](https://www.tritondatacenter.com/blog/dynamic-nginx-upstreams-with-containerbuddy)
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## client

[![GoDoc](https://godoc.org/github.com/joyent/containerpilot?status.svg)](https://godoc.org/github.com/joyent/containerpilot/client)
[![GoDoc](https://godoc.org/github.com/tritondatacenter/containerpilot?status.svg)](https://godoc.org/github.com/tritondatacenter/containerpilot/client)
3 changes: 2 additions & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import (
// requests out to a ContainerPilot process's control socket.
type HTTPClient struct {
http.Client
socketPath string
// staticcheck U1000 field is unused
//socketPath string
}

var socketType = "unix"
Expand Down
2 changes: 1 addition & 1 deletion commands/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## commands

[![GoDoc](https://godoc.org/github.com/joyent/containerpilot?status.svg)](https://godoc.org/github.com/joyent/containerpilot/commands)
[![GoDoc](https://godoc.org/github.com/tritondatacenter/containerpilot?status.svg)](https://godoc.org/github.com/tritondatacenter/containerpilot/commands)
2 changes: 1 addition & 1 deletion commands/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"strings"

"github.com/joyent/containerpilot/config/decode"
"github.com/tritondatacenter/containerpilot/config/decode"
)

// ParseArgs parses the executable and its arguments from supported
Expand Down
29 changes: 22 additions & 7 deletions commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"syscall"
"time"

"github.com/joyent/containerpilot/events"
"github.com/tritondatacenter/containerpilot/events"
log "github.com/sirupsen/logrus"
)

Expand All @@ -30,6 +30,8 @@ type Command struct {
logger log.Entry
lock *sync.Mutex
fields log.Fields
UID int
GID int
}

// NewCommand parses JSON config into a Command
Expand Down Expand Up @@ -101,7 +103,20 @@ func (c *Command) Run(pctx context.Context, bus *events.EventBus) {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
}

cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
if os.Getuid() == 0 {
if c.UID != 0 && c.GID != 0 {
cmd.SysProcAttr.Credential = &syscall.Credential{Uid: uint32(c.UID), Gid: uint32(c.GID)}
} else if c.UID != 0 {
cmd.SysProcAttr.Credential = &syscall.Credential{Uid: uint32(c.UID)}
} else if c.GID != 0 {
cmd.SysProcAttr.Credential = &syscall.Credential{Gid: uint32(c.GID)}
}
} else {
log.Debugf("%s.Skipping uid and gid (ContainerPilot is not running as root)", c.Name)
}

c.Cmd = cmd
ctx, cancel := getContext(pctx, c.Timeout)

Expand All @@ -126,8 +141,8 @@ func (c *Command) Run(pctx context.Context, bus *events.EventBus) {
defer log.Debugf("%s.Run end", c.Name)
if err := c.Cmd.Start(); err != nil {
log.Errorf("unable to start %s: %v", c.Name, err)
bus.Publish(events.Event{events.ExitFailed, c.Name})
bus.Publish(events.Event{events.Error, err.Error()})
bus.Publish(events.Event{Code: events.ExitFailed, Source: c.Name})
bus.Publish(events.Event{Code: events.Error, Source: err.Error()})
return
}

Expand All @@ -150,12 +165,12 @@ func (c *Command) Run(pctx context.Context, bus *events.EventBus) {
// we'll return from Wait() and publish events
if err := c.Cmd.Wait(); err != nil {
log.Errorf("%s exited with error: %v", c.Name, err)
bus.Publish(events.Event{events.ExitFailed, c.Name})
bus.Publish(events.Event{events.Error,
fmt.Errorf("%s: %s", c.Name, err).Error()})
bus.Publish(events.Event{Code: events.ExitFailed, Source: c.Name})
bus.Publish(events.Event{Code: events.Error,
Source: fmt.Errorf("%s: %s", c.Name, err).Error()})
} else {
log.Debugf("%s exited without error", c.Name)
bus.Publish(events.Event{events.ExitSuccess, c.Name})
bus.Publish(events.Event{Code: events.ExitSuccess, Source: c.Name})
}
}()
}
Expand Down
26 changes: 13 additions & 13 deletions commands/commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import (
"testing"
"time"

"github.com/joyent/containerpilot/events"
"github.com/tritondatacenter/containerpilot/events"
log "github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)

func TestCommandRunWithTimeoutZero(t *testing.T) {
cmd, _ := NewCommand("sleep 2", time.Duration(0), nil)
got := runtestCommandRun(cmd)
timedout := events.Event{events.ExitFailed, "sleep"}
timedout := events.Event{Code: events.ExitFailed, Source: "sleep"}
if got[timedout] != 1 {
t.Fatalf("stopped command prior to test timeout, got events %v", got)
}
Expand All @@ -25,9 +25,9 @@ func TestCommandRunWithTimeoutKilled(t *testing.T) {
cmd, _ := NewCommand("sleep 2", time.Duration(100*time.Millisecond), nil)
cmd.Name = t.Name()
got := runtestCommandRun(cmd)
testTimeout := events.Event{events.TimerExpired, "DebugSubscriberTimeout"}
expired := events.Event{events.ExitFailed, t.Name()}
errMsg := events.Event{events.Error, fmt.Sprintf("%s: signal: killed", cmd.Name)}
testTimeout := events.Event{Code: events.TimerExpired, Source: "DebugSubscriberTimeout"}
expired := events.Event{Code: events.ExitFailed, Source: t.Name()}
errMsg := events.Event{Code: events.Error, Source: fmt.Sprintf("%s: signal: killed", cmd.Name)}
if got[testTimeout] > 0 || got[expired] != 1 || got[errMsg] != 1 {
t.Fatalf("expected:\n%v\n%v\ngot events:\n%v", expired, errMsg, got)
}
Expand All @@ -38,9 +38,9 @@ func TestCommandRunChildrenKilled(t *testing.T) {
time.Duration(100*time.Millisecond), nil)
cmd.Name = t.Name()
got := runtestCommandRun(cmd)
testTimeout := events.Event{events.TimerExpired, "DebugSubscriberTimeout"}
expired := events.Event{events.ExitFailed, t.Name()}
errMsg := events.Event{events.Error, fmt.Sprintf("%s: signal: killed", cmd.Name)}
testTimeout := events.Event{Code: events.TimerExpired, Source: "DebugSubscriberTimeout"}
expired := events.Event{Code: events.ExitFailed, Source: t.Name()}
errMsg := events.Event{Code: events.Error, Source: fmt.Sprintf("%s: signal: killed", cmd.Name)}
if got[testTimeout] > 0 || got[expired] != 1 || got[errMsg] != 1 {
t.Fatalf("expected:\n%v\n%v\ngot events:\n%v", expired, errMsg, got)
}
Expand All @@ -49,8 +49,8 @@ func TestCommandRunChildrenKilled(t *testing.T) {
func TestCommandRunExecFailed(t *testing.T) {
cmd, _ := NewCommand("./testdata/test.sh failStuff --debug", time.Duration(0), nil)
got := runtestCommandRun(cmd)
failed := events.Event{events.ExitFailed, "./testdata/test.sh"}
errMsg := events.Event{events.Error, "./testdata/test.sh: exit status 255"}
failed := events.Event{Code: events.ExitFailed, Source: "./testdata/test.sh"}
errMsg := events.Event{Code: events.Error, Source: "./testdata/test.sh: exit status 255"}
if got[failed] != 1 || got[errMsg] != 1 {
t.Fatalf("expected:\n%v\n%v\ngot events:\n%v", failed, errMsg, got)
}
Expand All @@ -59,9 +59,9 @@ func TestCommandRunExecFailed(t *testing.T) {
func TestCommandRunExecInvalid(t *testing.T) {
cmd, _ := NewCommand("./testdata/invalidCommand", time.Duration(0), nil)
got := runtestCommandRun(cmd)
failed := events.Event{events.ExitFailed, "./testdata/invalidCommand"}
errMsg := events.Event{events.Error,
"fork/exec ./testdata/invalidCommand: no such file or directory"}
failed := events.Event{Code: events.ExitFailed, Source: "./testdata/invalidCommand"}
errMsg := events.Event{Code: events.Error,
Source: "fork/exec ./testdata/invalidCommand: no such file or directory"}
if got[failed] != 1 || got[errMsg] != 1 {
t.Fatalf("expected:\n%v\n%v\ngot events:\n%v", failed, errMsg, got)
}
Expand Down
2 changes: 1 addition & 1 deletion commands/testdata/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

trap 'exit 2' SIGTERM

Expand Down
2 changes: 1 addition & 1 deletion config/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## config

[![GoDoc](https://godoc.org/github.com/joyent/containerpilot?status.svg)](https://godoc.org/github.com/joyent/containerpilot/config)
[![GoDoc](https://godoc.org/github.com/tritondatacenter/containerpilot?status.svg)](https://godoc.org/github.com/tritondatacenter/containerpilot/config)
Loading