File tree 2 files changed +21
-8
lines changed
2 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,18 @@ default_instance="local"
4
4
host="https://127.0.0.1"
5
5
token="example"
6
6
7
- [staging ]
7
+ [staging_pipeline ]
8
8
host="https://staging.kernelci.org:9100/"
9
9
token="example"
10
10
11
11
[staging_api]
12
- host="https://staging.kernelci.org:9000/latest/ "
12
+ host="https://staging.kernelci.org:9000/"
13
13
token="example"
14
14
15
- [production ]
15
+ [production_pipeline ]
16
16
host="https://kernelci-pipeline.westus3.cloudapp.azure.com/"
17
17
token="example"
18
+
19
+ [production_api]
20
+ host="https://kernelci-api.westus3.cloudapp.azure.com/"
21
+ token="example"
Original file line number Diff line number Diff line change @@ -18,18 +18,27 @@ poetry run kci-dev
18
18
19
19
kci-dev uses a configuration file .kci-dev.toml in the program directory.
20
20
``` toml
21
- default_instance =" staging"
21
+ default_instance =" local"
22
+
22
23
[local ]
23
24
host =" https://127.0.0.1"
24
25
token =" example"
25
26
26
- [staging ]
27
+ [staging_pipeline ]
27
28
host =" https://staging.kernelci.org:9100/"
28
- token =" SOMEVERYSECRETTOKEN"
29
+ token =" example"
30
+
31
+ [staging_api ]
32
+ host =" https://staging.kernelci.org:9000/"
33
+ token =" example"
29
34
30
- [production ]
35
+ [production_pipeline ]
31
36
host =" https://kernelci-pipeline.westus3.cloudapp.azure.com/"
32
37
token =" example"
38
+
39
+ [production_api ]
40
+ host =" https://kernelci-api.westus3.cloudapp.azure.com/"
41
+ token =" example"
33
42
```
34
43
35
44
Where ` default_instance ` is the default instance to use, if not provided in the command line.
@@ -45,7 +54,7 @@ You can provide the instance name to use for the command.
45
54
46
55
Example:
47
56
``` sh
48
- kci-dev --instance staging
57
+ kci-dev --instance staging_api
49
58
```
50
59
51
60
### settings
You can’t perform that action at this time.
0 commit comments