-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devfile.yaml
42 lines (38 loc) · 1009 Bytes
/
.devfile.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
schemaVersion: 2.3.0
metadata:
name: jumpstarter-devspace
icon: https://jumpstarter.dev/jumpstarter.svg
tags:
- Python
- Jumpstarter
language: Python
projects:
- name: jumpstarter
git:
remotes:
origin: https://github.com/jumpstarter-dev/jumpstarter-devspace.git
components:
- name: runtime
container:
image: quay.io/jumpstarter-dev/jumpstarter-devspace:latest
mountSources: true
env: # use insecure TLS connection for now, you can remove this if your jumpstarter deployment has trusted TLS certs
- name: JUMPSTARTER_GRPC_INSECURE
value: "1"
commands:
- id: pytest
exec:
component: runtime
commandLine: pytest
- id: client-list
exec:
component: runtime
commandLine: jmp list
- id: list-my-leases
exec:
component: runtime
commandLine: jmp lease list default
- id: release-my-leases
exec:
component: runtime
commandLine: jmp lease release default --all