generated from onedr0p/cluster-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add k8s and ansible config to vscode settings
- Loading branch information
1 parent
3e724cd
commit 1e49dd1
Showing
1 changed file
with
26 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
{ | ||
"ansible.validation.lint.arguments": "-c .ansible-lint", | ||
"files.associations": { | ||
"*.json5": "jsonc", | ||
"**/ansible/**/*.yaml": "ansible", | ||
"**/ansible/**/*.sops.yaml": "yaml", | ||
"**/ansible/**/inventory/**/*.yaml": "yaml", | ||
"**/terraform/**/*.tf": "terraform", | ||
"**/kubernetes/**/*.sops.toml": "plaintext" | ||
}, | ||
"yaml.schemaStore.enable": true, | ||
"yaml.schemas": { | ||
"ansible": "ansible/**/*.yaml", | ||
"kubernetes": "kubernetes/**/*.yaml" | ||
}, | ||
"explorer.autoReveal": false, | ||
"files.trimTrailingWhitespace": true, | ||
"sops.defaults.ageKeyFile": "age.key" | ||
"ansible.ansible.path": ".venv/bin/ansible", | ||
"ansible.python.activationScript": ".venv/bin/activate", | ||
"ansible.python.interpreterPath": ".venv/bin/python3", | ||
"ansible.validation.enabled": true, | ||
"ansible.validation.lint.arguments": "-c ansible/.ansible-lint", | ||
"ansible.validation.lint.enabled": true, | ||
"ansible.validation.lint.path": ".venv/bin/ansible-lint", | ||
"files.associations": { | ||
"*.json5": "jsonc", | ||
"./ansible/**/*.yaml": "ansible", | ||
"./ansible/**/*.sops.yaml": "yaml", | ||
"./ansible/**/inventory/**/*.yaml": "yaml", | ||
"*/terraform/**/*.tf": "terraform", | ||
"./kubernetes/**/*.sops.toml": "plaintext" | ||
}, | ||
"sops.defaults.ageKeyFile": "age.key", | ||
"yaml.schemas": { | ||
"ansible": "./ansible/*.yaml", | ||
"Kubernetes": "./kubernetes/*.yaml" | ||
}, | ||
"vs-kubernetes": { | ||
"vs-kubernetes.kubeconfig": "./kubeconfig", | ||
"vs-kubernetes.knownKubeconfigs": [ | ||
"./kubeconfig" | ||
] | ||
} | ||
} |