├── LICENSE ├── README.md ├── grafana └── openstf-dashboard.json ├── openstf ├── Chart.yaml ├── templates │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── daemonset.yaml │ ├── deployment.yaml │ ├── emulators.yaml │ ├── ingress.yaml │ ├── pre-install-job.yaml │ └── svc.yaml └── values.yaml └── scripts ├── .gitignore └── clean-offline-x86.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/README.md -------------------------------------------------------------------------------- /grafana/openstf-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/grafana/openstf-dashboard.json -------------------------------------------------------------------------------- /openstf/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/Chart.yaml -------------------------------------------------------------------------------- /openstf/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/templates/_helpers.tpl -------------------------------------------------------------------------------- /openstf/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/templates/configmap.yaml -------------------------------------------------------------------------------- /openstf/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/templates/daemonset.yaml -------------------------------------------------------------------------------- /openstf/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/templates/deployment.yaml -------------------------------------------------------------------------------- /openstf/templates/emulators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/templates/emulators.yaml -------------------------------------------------------------------------------- /openstf/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/templates/ingress.yaml -------------------------------------------------------------------------------- /openstf/templates/pre-install-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/templates/pre-install-job.yaml -------------------------------------------------------------------------------- /openstf/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/templates/svc.yaml -------------------------------------------------------------------------------- /openstf/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/openstf/values.yaml -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /scripts/clean-offline-x86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/android-farm/HEAD/scripts/clean-offline-x86.js --------------------------------------------------------------------------------