-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 932 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "lab",
"license": "MIT",
"scripts": {
"tf:plan": "terraform -chdir='./terraform/harvester' plan",
"tf:apply": "terraform -chdir='./terraform/harvester' apply -auto-approve",
"tf:destroy": "terraform -chdir='./terraform/harvester' destroy --target harvester_virtualmachine.kube-cluster -auto-approve",
"ansible": "ansible-playbook -vvvv -i ./ansible/inventory/hosts.ini ./ansible/playbooks/rancher2.yml",
"harvester:apply": "kubectl --kubeconfig ~/.kube/altra.yaml apply -f ./terraform/harvester/templates",
"k:install": "./kubernetes/install.sh",
"k:config": "cp kubeconfig ~/.kube/kubeconfig",
"k:bootstrap": "helm template argocd bootstrap/argo-cd --namespace argocd | kubectl apply -f -",
"ecran:dev": "bun run --cwd services/ecran dev",
"prepare": "husky"
},
"packageManager": "[email protected]",
"devDependencies": {
"husky": "^9.1.5",
"prettier": "^3.3.3"
}
}