Skip to content

Commit

Permalink
chore: add k8s and ansible config to vscode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
onedr0p authored and joryirving committed Dec 4, 2023
1 parent 3e724cd commit 1e49dd1
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions .vscode/settings.json
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"
]
}
}

0 comments on commit 1e49dd1

Please sign in to comment.