Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions apps/buildkit.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from __future__ import annotations

from typing import Generator

import requests
import yaml

from apps.versions import versions

name = "buildkit"


def objects() -> Generator[dict, None, None]:
contents = requests.get(
f"https://raw.githubusercontent.com/moby/buildkit/{versions['buildkit']['version']}/examples/kubernetes/statefulset.rootless.yaml",
)
contents.raise_for_status()

yield yaml.safe_load(contents.text)
4 changes: 4 additions & 0 deletions apps/versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ github = "https://github.com/argoproj/argo-workflows"
version = "1.6.3"
github = "https://github.com/argoproj/argo-events"

[buildkit]
version = "v0.10"
github = "https://github.com/moby/buildkit"

[cert-manager]
version = "1.6.1"
helm = "https://charts.jetstack.io"
Expand Down
3 changes: 3 additions & 0 deletions cluster.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ path = "apps/argocd.py"
[modules.argoci]
path = "apps/argoci.py"

[modules.buildkit]
path = "apps/buildkit.py"

[modules.cert-manager]
path = "apps/cert_manager.py"

Expand Down