k8s.io/test-infra@v0.0.0-20240520184403-27c6b4c223d8/gubernator/app.yaml (about) 1 runtime: python27 2 api_version: 1 3 threadsafe: yes 4 instance_class: F2 5 6 inbound_services: 7 - warmup 8 9 handlers: 10 - url: /_ah/warmup 11 script: main.app 12 login: admin 13 14 - url: /favicon\.ico 15 static_files: static/favicon.ico 16 upload: static/favicon\.ico 17 secure: always 18 19 - url: /robots\.txt 20 static_files: static/robots.txt 21 upload: static/robots.txt 22 secure: always 23 24 - url: /static 25 static_dir: static 26 application_readable: true 27 28 - url: /config 29 script: main.app 30 login: admin 31 32 - url: .* 33 script: main.app 34 secure: always 35 36 libraries: 37 - name: webapp2 38 version: "2.5.2" 39 - name: jinja2 40 version: "2.6"