├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── client ├── README.md └── client.go ├── commands ├── README.md ├── args.go ├── args_test.go ├── commands.go ├── commands_test.go └── testdata │ └── test.sh ├── config ├── README.md ├── config.go ├── config_test.go ├── decode │ ├── README.md │ ├── decode.go │ └── decode_test.go ├── logger │ ├── README.md │ ├── logging.go │ └── logging_test.go ├── services │ ├── README.md │ ├── docs.go │ ├── ips.go │ ├── ips_test.go │ ├── names.go │ └── names_test.go ├── template │ ├── README.md │ ├── template.go │ └── template_test.go ├── testdata │ └── test.json5 └── timing │ ├── README.md │ ├── duration.go │ └── duration_test.go ├── control ├── README.md ├── config.go ├── config_test.go ├── control.go ├── control_test.go ├── endpoints.go └── endpoints_test.go ├── core ├── README.md ├── app.go ├── app_test.go ├── flags.go ├── flags_test.go ├── signals.go ├── signals_test.go └── testdata │ └── test.sh ├── discovery ├── README.md ├── config.go ├── consul.go ├── consul_test.go ├── discovery.go ├── service.go └── test_server.go ├── docs ├── 10-lifecycle.md ├── 20-design.md ├── 30-configuration │ ├── 31-installation.md │ ├── 32-configuration-file.md │ ├── 33-consul.md │ ├── 34-jobs.md │ ├── 35-watches.md │ ├── 36-telemetry.md │ ├── 37-control-plane.md │ ├── 38-logging.md │ ├── 39-config-examples.md │ ├── README.md │ └── examples │ │ ├── consul-agent.json5 │ │ ├── database-config.json5 │ │ ├── nginx-upstreams.json5 │ │ ├── periodic-tasks.json5 │ │ ├── service-reg-only.json5 │ │ └── stopping.json5 ├── 40-support.md └── README.md ├── events ├── README.md ├── bus.go ├── eventcode_string.go ├── events.go ├── events_test.go ├── publisher.go ├── subscriber.go └── timer.go ├── glide.lock ├── glide.yaml ├── integration_tests ├── README.md ├── fixtures │ ├── app │ │ ├── Dockerfile │ │ ├── containerpilot-with-coprocess.json5 │ │ ├── containerpilot-with-file-log.json5 │ │ ├── containerpilot.json5 │ │ ├── reload-app.sh │ │ ├── reload-containerpilot.sh │ │ └── sensor.sh │ ├── consul │ │ ├── Dockerfile │ │ └── assert │ └── nginx │ │ ├── Dockerfile │ │ └── etc │ │ ├── nginx-consul.ctmpl │ │ ├── nginx-with-consul.json5 │ │ └── nginx │ │ └── nginx.conf └── tests │ ├── test_config_reload │ ├── docker-compose.yml │ └── run.sh │ ├── test_coprocess │ ├── coprocess.sh │ ├── docker-compose.yml │ └── run.sh │ ├── test_discovery_consul │ ├── containerpilot.json5 │ ├── docker-compose.yml │ └── run.sh │ ├── test_envvars │ ├── containerpilot.json5 │ ├── docker-compose.yml │ └── run.sh │ ├── test_logging │ ├── containerpilot.json5 │ ├── docker-compose.yml │ └── run.sh │ ├── test_no_command │ ├── docker-compose.yml │ └── run.sh │ ├── test_reap_zombies │ ├── containerpilot.json5 │ ├── docker-compose.yml │ ├── run.sh │ ├── slow-child.sh │ ├── slow-zombie.sh │ └── zombie.sh │ ├── test_reopen │ ├── docker-compose.yml │ ├── run.sh │ └── test_reopen.sh │ ├── test_sighup │ ├── containerpilot.json5 │ ├── docker-compose.yml │ └── run.sh │ ├── test_sigterm │ ├── containerpilot.json5 │ ├── docker-compose.yml │ └── run.sh │ ├── test_tasks │ ├── containerpilot.json5 │ ├── docker-compose.yml │ ├── run.sh │ └── task.sh │ ├── test_telemetry │ ├── check.sh │ ├── containerpilot.json5 │ ├── docker-compose.yml │ └── run.sh │ └── test_version_flag │ ├── docker-compose.yml │ └── run.sh ├── jobs ├── README.md ├── config.go ├── config_test.go ├── jobs.go ├── jobs_test.go ├── status.go └── testdata │ ├── TestErrJobConfigConsulDeregisterCriticalServiceAfter.json5 │ ├── TestErrJobConfigConsulEnableTagOverride.json5 │ ├── TestJobConfigConsulExtras.json5 │ ├── TestJobConfigHealthTimeout.json5 │ ├── TestJobConfigPeriodicTask.json5 │ ├── TestJobConfigServiceNonAdvertised.json5 │ ├── TestJobConfigServiceWithArrayExec.json5 │ ├── TestJobConfigServiceWithInitialStatus.json5 │ ├── TestJobConfigServiceWithPreStart.json5 │ ├── TestJobConfigServiceWithStopping.json5 │ ├── TestJobConfigSmokeTest.json5 │ ├── test.sh │ ├── test_coprocess.sh │ └── test_tasks.sh ├── main.go ├── makefile ├── scripts ├── add_dep.sh ├── cover.sh ├── docs.py ├── lint.sh ├── test.sh └── unit_test.sh ├── subcommands ├── README.md └── subcommands.go ├── sup ├── README.md └── sup.go ├── telemetry ├── README.md ├── metrics.go ├── metrics_config.go ├── metrics_config_test.go ├── metrics_test.go ├── status.go ├── status_test.go ├── telemetry.go ├── telemetry_config.go ├── telemetry_config_test.go ├── telemetry_test.go └── testdata │ ├── TestTelemetryConfigParse.json5 │ └── test.sh ├── tests ├── README.md ├── mocks │ ├── README.md │ └── discovery.go └── tests.go ├── version ├── README.md └── version.go └── watches ├── README.md ├── config.go ├── config_test.go ├── testdata ├── TestWatchesParse.json5 └── test.sh ├── watches.go └── watches_test.go /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/README.md -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/client/README.md -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/client/client.go -------------------------------------------------------------------------------- /commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/commands/README.md -------------------------------------------------------------------------------- /commands/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/commands/args.go -------------------------------------------------------------------------------- /commands/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/commands/args_test.go -------------------------------------------------------------------------------- /commands/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/commands/commands.go -------------------------------------------------------------------------------- /commands/commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/commands/commands_test.go -------------------------------------------------------------------------------- /commands/testdata/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/commands/testdata/test.sh -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/README.md -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/decode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/decode/README.md -------------------------------------------------------------------------------- /config/decode/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/decode/decode.go -------------------------------------------------------------------------------- /config/decode/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/decode/decode_test.go -------------------------------------------------------------------------------- /config/logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/logger/README.md -------------------------------------------------------------------------------- /config/logger/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/logger/logging.go -------------------------------------------------------------------------------- /config/logger/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/logger/logging_test.go -------------------------------------------------------------------------------- /config/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/services/README.md -------------------------------------------------------------------------------- /config/services/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/services/docs.go -------------------------------------------------------------------------------- /config/services/ips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/services/ips.go -------------------------------------------------------------------------------- /config/services/ips_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/services/ips_test.go -------------------------------------------------------------------------------- /config/services/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/services/names.go -------------------------------------------------------------------------------- /config/services/names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/services/names_test.go -------------------------------------------------------------------------------- /config/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/template/README.md -------------------------------------------------------------------------------- /config/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/template/template.go -------------------------------------------------------------------------------- /config/template/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/template/template_test.go -------------------------------------------------------------------------------- /config/testdata/test.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/testdata/test.json5 -------------------------------------------------------------------------------- /config/timing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/timing/README.md -------------------------------------------------------------------------------- /config/timing/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/timing/duration.go -------------------------------------------------------------------------------- /config/timing/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/config/timing/duration_test.go -------------------------------------------------------------------------------- /control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/control/README.md -------------------------------------------------------------------------------- /control/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/control/config.go -------------------------------------------------------------------------------- /control/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/control/config_test.go -------------------------------------------------------------------------------- /control/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/control/control.go -------------------------------------------------------------------------------- /control/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/control/control_test.go -------------------------------------------------------------------------------- /control/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/control/endpoints.go -------------------------------------------------------------------------------- /control/endpoints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/control/endpoints_test.go -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/core/README.md -------------------------------------------------------------------------------- /core/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/core/app.go -------------------------------------------------------------------------------- /core/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/core/app_test.go -------------------------------------------------------------------------------- /core/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/core/flags.go -------------------------------------------------------------------------------- /core/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/core/flags_test.go -------------------------------------------------------------------------------- /core/signals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/core/signals.go -------------------------------------------------------------------------------- /core/signals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/core/signals_test.go -------------------------------------------------------------------------------- /core/testdata/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/core/testdata/test.sh -------------------------------------------------------------------------------- /discovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/discovery/README.md -------------------------------------------------------------------------------- /discovery/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/discovery/config.go -------------------------------------------------------------------------------- /discovery/consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/discovery/consul.go -------------------------------------------------------------------------------- /discovery/consul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/discovery/consul_test.go -------------------------------------------------------------------------------- /discovery/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/discovery/discovery.go -------------------------------------------------------------------------------- /discovery/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/discovery/service.go -------------------------------------------------------------------------------- /discovery/test_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/discovery/test_server.go -------------------------------------------------------------------------------- /docs/10-lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/10-lifecycle.md -------------------------------------------------------------------------------- /docs/20-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/20-design.md -------------------------------------------------------------------------------- /docs/30-configuration/31-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/31-installation.md -------------------------------------------------------------------------------- /docs/30-configuration/32-configuration-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/32-configuration-file.md -------------------------------------------------------------------------------- /docs/30-configuration/33-consul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/33-consul.md -------------------------------------------------------------------------------- /docs/30-configuration/34-jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/34-jobs.md -------------------------------------------------------------------------------- /docs/30-configuration/35-watches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/35-watches.md -------------------------------------------------------------------------------- /docs/30-configuration/36-telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/36-telemetry.md -------------------------------------------------------------------------------- /docs/30-configuration/37-control-plane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/37-control-plane.md -------------------------------------------------------------------------------- /docs/30-configuration/38-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/38-logging.md -------------------------------------------------------------------------------- /docs/30-configuration/39-config-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/39-config-examples.md -------------------------------------------------------------------------------- /docs/30-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/README.md -------------------------------------------------------------------------------- /docs/30-configuration/examples/consul-agent.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/examples/consul-agent.json5 -------------------------------------------------------------------------------- /docs/30-configuration/examples/database-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/examples/database-config.json5 -------------------------------------------------------------------------------- /docs/30-configuration/examples/nginx-upstreams.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/examples/nginx-upstreams.json5 -------------------------------------------------------------------------------- /docs/30-configuration/examples/periodic-tasks.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/examples/periodic-tasks.json5 -------------------------------------------------------------------------------- /docs/30-configuration/examples/service-reg-only.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/examples/service-reg-only.json5 -------------------------------------------------------------------------------- /docs/30-configuration/examples/stopping.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/30-configuration/examples/stopping.json5 -------------------------------------------------------------------------------- /docs/40-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/40-support.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/docs/README.md -------------------------------------------------------------------------------- /events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/events/README.md -------------------------------------------------------------------------------- /events/bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/events/bus.go -------------------------------------------------------------------------------- /events/eventcode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/events/eventcode_string.go -------------------------------------------------------------------------------- /events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/events/events.go -------------------------------------------------------------------------------- /events/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/events/events_test.go -------------------------------------------------------------------------------- /events/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/events/publisher.go -------------------------------------------------------------------------------- /events/subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/events/subscriber.go -------------------------------------------------------------------------------- /events/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/events/timer.go -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/glide.yaml -------------------------------------------------------------------------------- /integration_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/README.md -------------------------------------------------------------------------------- /integration_tests/fixtures/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/app/Dockerfile -------------------------------------------------------------------------------- /integration_tests/fixtures/app/containerpilot-with-coprocess.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/app/containerpilot-with-coprocess.json5 -------------------------------------------------------------------------------- /integration_tests/fixtures/app/containerpilot-with-file-log.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/app/containerpilot-with-file-log.json5 -------------------------------------------------------------------------------- /integration_tests/fixtures/app/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/app/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/fixtures/app/reload-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/app/reload-app.sh -------------------------------------------------------------------------------- /integration_tests/fixtures/app/reload-containerpilot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/app/reload-containerpilot.sh -------------------------------------------------------------------------------- /integration_tests/fixtures/app/sensor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/app/sensor.sh -------------------------------------------------------------------------------- /integration_tests/fixtures/consul/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/consul/Dockerfile -------------------------------------------------------------------------------- /integration_tests/fixtures/consul/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/consul/assert -------------------------------------------------------------------------------- /integration_tests/fixtures/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/nginx/Dockerfile -------------------------------------------------------------------------------- /integration_tests/fixtures/nginx/etc/nginx-consul.ctmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/nginx/etc/nginx-consul.ctmpl -------------------------------------------------------------------------------- /integration_tests/fixtures/nginx/etc/nginx-with-consul.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/nginx/etc/nginx-with-consul.json5 -------------------------------------------------------------------------------- /integration_tests/fixtures/nginx/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/fixtures/nginx/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /integration_tests/tests/test_config_reload/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_config_reload/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_config_reload/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_config_reload/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_coprocess/coprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_coprocess/coprocess.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_coprocess/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_coprocess/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_coprocess/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_coprocess/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_discovery_consul/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_discovery_consul/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/tests/test_discovery_consul/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_discovery_consul/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_discovery_consul/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_discovery_consul/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_envvars/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_envvars/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/tests/test_envvars/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_envvars/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_envvars/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_envvars/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_logging/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_logging/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/tests/test_logging/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_logging/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_logging/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_logging/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_no_command/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_no_command/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_no_command/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_no_command/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_reap_zombies/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reap_zombies/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/tests/test_reap_zombies/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reap_zombies/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_reap_zombies/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reap_zombies/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_reap_zombies/slow-child.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reap_zombies/slow-child.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_reap_zombies/slow-zombie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reap_zombies/slow-zombie.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_reap_zombies/zombie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reap_zombies/zombie.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_reopen/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reopen/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_reopen/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reopen/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_reopen/test_reopen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_reopen/test_reopen.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_sighup/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_sighup/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/tests/test_sighup/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_sighup/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_sighup/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_sighup/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_sigterm/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_sigterm/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/tests/test_sigterm/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_sigterm/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_sigterm/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_sigterm/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_tasks/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_tasks/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/tests/test_tasks/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_tasks/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_tasks/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_tasks/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_tasks/task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_tasks/task.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_telemetry/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_telemetry/check.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_telemetry/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_telemetry/containerpilot.json5 -------------------------------------------------------------------------------- /integration_tests/tests/test_telemetry/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_telemetry/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_telemetry/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_telemetry/run.sh -------------------------------------------------------------------------------- /integration_tests/tests/test_version_flag/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_version_flag/docker-compose.yml -------------------------------------------------------------------------------- /integration_tests/tests/test_version_flag/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/integration_tests/tests/test_version_flag/run.sh -------------------------------------------------------------------------------- /jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/README.md -------------------------------------------------------------------------------- /jobs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/config.go -------------------------------------------------------------------------------- /jobs/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/config_test.go -------------------------------------------------------------------------------- /jobs/jobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/jobs.go -------------------------------------------------------------------------------- /jobs/jobs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/jobs_test.go -------------------------------------------------------------------------------- /jobs/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/status.go -------------------------------------------------------------------------------- /jobs/testdata/TestErrJobConfigConsulDeregisterCriticalServiceAfter.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestErrJobConfigConsulDeregisterCriticalServiceAfter.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestErrJobConfigConsulEnableTagOverride.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestErrJobConfigConsulEnableTagOverride.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigConsulExtras.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigConsulExtras.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigHealthTimeout.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigHealthTimeout.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigPeriodicTask.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigPeriodicTask.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigServiceNonAdvertised.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigServiceNonAdvertised.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigServiceWithArrayExec.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigServiceWithArrayExec.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigServiceWithInitialStatus.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigServiceWithInitialStatus.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigServiceWithPreStart.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigServiceWithPreStart.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigServiceWithStopping.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigServiceWithStopping.json5 -------------------------------------------------------------------------------- /jobs/testdata/TestJobConfigSmokeTest.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/TestJobConfigSmokeTest.json5 -------------------------------------------------------------------------------- /jobs/testdata/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/test.sh -------------------------------------------------------------------------------- /jobs/testdata/test_coprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/test_coprocess.sh -------------------------------------------------------------------------------- /jobs/testdata/test_tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/jobs/testdata/test_tasks.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/main.go -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/makefile -------------------------------------------------------------------------------- /scripts/add_dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/scripts/add_dep.sh -------------------------------------------------------------------------------- /scripts/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/scripts/cover.sh -------------------------------------------------------------------------------- /scripts/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/scripts/docs.py -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/unit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/scripts/unit_test.sh -------------------------------------------------------------------------------- /subcommands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/subcommands/README.md -------------------------------------------------------------------------------- /subcommands/subcommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/subcommands/subcommands.go -------------------------------------------------------------------------------- /sup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/sup/README.md -------------------------------------------------------------------------------- /sup/sup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/sup/sup.go -------------------------------------------------------------------------------- /telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/README.md -------------------------------------------------------------------------------- /telemetry/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/metrics.go -------------------------------------------------------------------------------- /telemetry/metrics_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/metrics_config.go -------------------------------------------------------------------------------- /telemetry/metrics_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/metrics_config_test.go -------------------------------------------------------------------------------- /telemetry/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/metrics_test.go -------------------------------------------------------------------------------- /telemetry/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/status.go -------------------------------------------------------------------------------- /telemetry/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/status_test.go -------------------------------------------------------------------------------- /telemetry/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/telemetry.go -------------------------------------------------------------------------------- /telemetry/telemetry_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/telemetry_config.go -------------------------------------------------------------------------------- /telemetry/telemetry_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/telemetry_config_test.go -------------------------------------------------------------------------------- /telemetry/telemetry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/telemetry_test.go -------------------------------------------------------------------------------- /telemetry/testdata/TestTelemetryConfigParse.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/testdata/TestTelemetryConfigParse.json5 -------------------------------------------------------------------------------- /telemetry/testdata/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/telemetry/testdata/test.sh -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/tests/mocks/README.md -------------------------------------------------------------------------------- /tests/mocks/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/tests/mocks/discovery.go -------------------------------------------------------------------------------- /tests/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/tests/tests.go -------------------------------------------------------------------------------- /version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/version/README.md -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/version/version.go -------------------------------------------------------------------------------- /watches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/watches/README.md -------------------------------------------------------------------------------- /watches/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/watches/config.go -------------------------------------------------------------------------------- /watches/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/watches/config_test.go -------------------------------------------------------------------------------- /watches/testdata/TestWatchesParse.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/watches/testdata/TestWatchesParse.json5 -------------------------------------------------------------------------------- /watches/testdata/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/watches/testdata/test.sh -------------------------------------------------------------------------------- /watches/watches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/watches/watches.go -------------------------------------------------------------------------------- /watches/watches_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/containerpilot/HEAD/watches/watches_test.go --------------------------------------------------------------------------------