gitextract_zhlni1rs/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── application.go ├── application_marshalling.go ├── application_marshalling_test.go ├── application_test.go ├── client.go ├── client_test.go ├── cluster.go ├── cluster_test.go ├── config.go ├── const.go ├── deployment.go ├── deployment_test.go ├── docker.go ├── docker_test.go ├── error.go ├── error_test.go ├── events.go ├── examples/ │ ├── Makefile │ ├── applications/ │ │ └── main.go │ ├── docker-compose.yml │ ├── events_callback_transport/ │ │ └── main.go │ ├── events_sse_transport/ │ │ └── main.go │ ├── glog/ │ │ └── main.go │ ├── groups/ │ │ └── main.go │ ├── multiple_endpoints/ │ │ └── main.go │ ├── pods/ │ │ └── main.go │ ├── queue/ │ │ └── main.go │ └── tasks/ │ └── main.go ├── group.go ├── group_test.go ├── health.go ├── health_test.go ├── info.go ├── info_test.go ├── last_task_failure.go ├── network.go ├── offer.go ├── pod.go ├── pod_container.go ├── pod_container_image.go ├── pod_container_marshalling.go ├── pod_instance.go ├── pod_instance_status.go ├── pod_instance_test.go ├── pod_marshalling.go ├── pod_marshalling_test.go ├── pod_scheduling.go ├── pod_status.go ├── pod_status_test.go ├── pod_test.go ├── port_definition.go ├── queue.go ├── queue_test.go ├── readiness.go ├── readiness_test.go ├── residency.go ├── residency_test.go ├── resources.go ├── subscription.go ├── subscription_test.go ├── task.go ├── task_test.go ├── testing_utils_test.go ├── tests/ │ ├── app-definitions/ │ │ ├── TestApplicationString-1.5-output.json │ │ └── TestApplicationString-output.json │ └── rest-api/ │ └── methods.yml ├── unreachable_strategy.go ├── unreachable_strategy_test.go ├── upgrade_strategy.go ├── utils.go ├── utils_test.go └── volume.go