From fd66c8bf70df929916e20209c64df00a915d8849 Mon Sep 17 00:00:00 2001 From: David Bernard Date: Tue, 9 Jan 2024 23:31:41 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20reorder=20and=20document?= =?UTF-8?q?=20rtx=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .rtx.toml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.rtx.toml b/.rtx.toml index abf77d4..36e9828 100644 --- a/.rtx.toml +++ b/.rtx.toml @@ -8,15 +8,15 @@ OTEL_TRACES_SAMPLER = "always_on" CLUSTER_NAME = "kind-local" [tools] -# docker = '*' # (or podman + some config) should be available for some of thoses tools -# dive = '*' # to explore content of image container -helm = '3.12' -# helmfile = '0.155' -kubectl = '1.27' -ctlptl = '0.8' -kind = '0.20' -java = '*' # required by skaffold -skaffold = '2' +rust = '1.75' # the rust tool stack (with cargo, fmt, clippy) to build source +just = '1' # to have a set of simple commands for repetive task (and CI) -rust = '1.75' -just = '1' +# local kubernetes (k8s) +# docker = '*' # to build, to run containers, should be available for some of thoses tools +# dive = '*' # to explore content of image container +helm = '3.12' # to deploy, check helm chart +kubectl = '1.27' # to interact with k8s cluster +ctlptl = '0.8' # to setup / manage local k8s (kind) cluster +kind = '0.20' # to have a local k8s cluster (on top of docker) +java = '*' # required by skaffold +skaffold = '2' # to have simple watch flow to build container, to publish container on local k8s registry, to deploy helm chart with new container