diff --git a/charts/tsuru-stack/Chart.lock b/charts/tsuru-stack/Chart.lock index 1468469..988f02c 100644 --- a/charts/tsuru-stack/Chart.lock +++ b/charts/tsuru-stack/Chart.lock @@ -1,7 +1,7 @@ dependencies: - name: tsuru-api repository: https://tsuru.github.io/charts - version: 0.2.9 + version: 0.2.12 - name: kubernetes-router repository: https://tsuru.github.io/charts version: 0.1.15 @@ -23,5 +23,5 @@ dependencies: - name: deploy-agent repository: https://tsuru.github.io/charts version: 1.4.4 -digest: sha256:155ae290e105d3c2cb4a27e0ae54fe87f3a4e5bfa381b4ab085327c3418a9527 -generated: "2023-09-06T10:32:04.394132-03:00" +digest: sha256:13883bfb8d6712e40c91ee4cdeb53ab73e64364e001766270813b2672b65b453 +generated: "2023-09-06T14:44:36.469821-03:00" diff --git a/charts/tsuru-stack/Chart.yaml b/charts/tsuru-stack/Chart.yaml index 231e42b..f4e7a62 100644 --- a/charts/tsuru-stack/Chart.yaml +++ b/charts/tsuru-stack/Chart.yaml @@ -19,7 +19,7 @@ version: 0.4.4 dependencies: - name: tsuru-api - version: "0.2.9" + version: "0.2.12" repository: https://tsuru.github.io/charts - name: kubernetes-router version: "0.1.15" diff --git a/charts/tsuru-stack/values.yaml b/charts/tsuru-stack/values.yaml index d9b0746..219605e 100644 --- a/charts/tsuru-stack/values.yaml +++ b/charts/tsuru-stack/values.yaml @@ -117,3 +117,32 @@ registry: enabled: true interval: 10s threshold: 3 + +deploy-agent: + buildkit: + config: | + # Buildkitd config file + # https://github.com/moby/buildkit/blob/master/docs/buildkitd.toml.md + + [grpc] + address = [ + "tcp://0.0.0.0:8081", + "unix:///run/buildkit/buildkitd.sock", + ] + + [worker.containerd] + enabled = false + + [worker.oci] + enabled = true + gc = false + + # NOTE: Force x86_64 arch as Tsuru doesn't support different ones yet. + platforms = [ + "linux/amd64" + ] + + [registry."tsuru-registry.tsuru-system.svc.cluster.local"] + http = true + + # vim: ft=toml