mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-22 21:44:46 +07:00
feat(scripts): add script to create new service
This commit is contained in:
parent
55cd0865b0
commit
8b2ccfad86
15
scripts/new-service
Executable file
15
scripts/new-service
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
mkdir -p "${1}"
|
||||||
|
|
||||||
|
cat << EOT > "${1}/Chart.yaml"
|
||||||
|
apiVersion: v2
|
||||||
|
name: CHANGEME
|
||||||
|
version: 0.0.0
|
||||||
|
dependencies:
|
||||||
|
- name: CHANGEME
|
||||||
|
version: CHANGEME
|
||||||
|
repository: CHANGEME
|
||||||
|
EOT
|
||||||
|
|
||||||
|
touch "${1}/values.yaml"
|
Loading…
Reference in New Issue
Block a user