feat(scripts): add script to create new service

This commit is contained in:
Khue Doan 2021-11-18 00:27:23 +07:00
parent 55cd0865b0
commit 8b2ccfad86

15
scripts/new-service Executable file
View 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"