Merge pull request #5 from malarinv/fix_helm_add_devbox

feat: Add devbox configuration and lock files; clean up YAML files by…
pull/6/head v0.0.3
Malar Kannan 2025-06-20 02:29:45 +05:30 committed by GitHub
commit 7f0784d382
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 19 additions and 3 deletions

View File

@ -46,4 +46,3 @@ spec:
resources:
{{- toYaml . | nindent 10 }}
{{- end }}
```

View File

@ -41,5 +41,4 @@ spec:
{{- with .Values.server.resources }}
resources:
{{- toYaml . | nindent 12 }}
{{- end }}
```
{{- end }}

14
devbox.json Normal file
View File

@ -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"
]
}
}
}

4
devbox.lock Normal file
View File

@ -0,0 +1,4 @@
{
"lockfile_version": "1",
"packages": {}
}