File tree 3 files changed +26
-0
lines changed
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ from __future__ import annotations
2
+
3
+ from typing import Generator
4
+
5
+ import requests
6
+ import yaml
7
+
8
+ from apps .versions import versions
9
+
10
+ name = "buildkit"
11
+
12
+
13
+ def objects () -> Generator [dict , None , None ]:
14
+ contents = requests .get (
15
+ f"https://raw.githubusercontent.com/moby/buildkit/{ versions ['buildkit' ]['version' ]} /examples/kubernetes/statefulset.rootless.yaml" ,
16
+ )
17
+ contents .raise_for_status ()
18
+
19
+ yield yaml .safe_load (contents .text )
Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ github = "https://github.com/argoproj/argo-workflows"
17
17
version = " 1.6.3"
18
18
github = " https://github.com/argoproj/argo-events"
19
19
20
+ [buildkit ]
21
+ version = " v0.10"
22
+ github = " https://github.com/moby/buildkit"
23
+
20
24
[cert-manager ]
21
25
version = " 1.6.1"
22
26
helm = " https://charts.jetstack.io"
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ path = "apps/argocd.py"
15
15
[modules .argoci ]
16
16
path = " apps/argoci.py"
17
17
18
+ [modules .buildkit ]
19
+ path = " apps/buildkit.py"
20
+
18
21
[modules .cert-manager ]
19
22
path = " apps/cert_manager.py"
20
23
You can’t perform that action at this time.
0 commit comments