From 050fbcbf3c46494c9989795d0e81c3cc4a5ffbf9 Mon Sep 17 00:00:00 2001 From: Malar Invention Date: Fri, 20 Jun 2025 02:28:10 +0530 Subject: [PATCH] feat: Add devbox configuration and lock files; clean up YAML files by removing trailing newlines --- .../templates/exporter-deployment.yaml | 1 - .../iperf3-monitor/templates/server-daemonset.yaml | 3 +-- devbox.json | 14 ++++++++++++++ devbox.lock | 4 ++++ 4 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 devbox.json create mode 100644 devbox.lock diff --git a/charts/iperf3-monitor/templates/exporter-deployment.yaml b/charts/iperf3-monitor/templates/exporter-deployment.yaml index 07f1125..b6d4df3 100644 --- a/charts/iperf3-monitor/templates/exporter-deployment.yaml +++ b/charts/iperf3-monitor/templates/exporter-deployment.yaml @@ -46,4 +46,3 @@ spec: resources: {{- toYaml . | nindent 10 }} {{- end }} -``` \ No newline at end of file diff --git a/charts/iperf3-monitor/templates/server-daemonset.yaml b/charts/iperf3-monitor/templates/server-daemonset.yaml index 9523270..ab246c2 100644 --- a/charts/iperf3-monitor/templates/server-daemonset.yaml +++ b/charts/iperf3-monitor/templates/server-daemonset.yaml @@ -41,5 +41,4 @@ spec: {{- with .Values.server.resources }} resources: {{- toYaml . | nindent 12 }} - {{- end }} -``` \ No newline at end of file + {{- end }} \ No newline at end of file diff --git a/devbox.json b/devbox.json new file mode 100644 index 0000000..2513c40 --- /dev/null +++ b/devbox.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json", + "packages": [], + "shell": { + "init_hook": [ + "echo 'Welcome to devbox!' > /dev/null" + ], + "scripts": { + "test": [ + "echo \"Error: no test specified\" && exit 1" + ] + } + } +} diff --git a/devbox.lock b/devbox.lock new file mode 100644 index 0000000..4206f37 --- /dev/null +++ b/devbox.lock @@ -0,0 +1,4 @@ +{ + "lockfile_version": "1", + "packages": {} +}