aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerenc Géczi <Ferenc-@users.noreply.github.com>2025-01-21 12:21:22 +0100
committerGitHub <noreply@github.com>2025-01-21 19:21:22 +0800
commit32c9817cf0b507ca18dd49ee11db9f804a99e341 (patch)
treef92fb5cde9310446ccb0474ad72a8b7d87e659bf
parentrefactor!: make available_servers function private (diff)
downloadnvim-lspconfig-32c9817cf0b507ca18dd49ee11db9f804a99e341.tar
nvim-lspconfig-32c9817cf0b507ca18dd49ee11db9f804a99e341.tar.gz
nvim-lspconfig-32c9817cf0b507ca18dd49ee11db9f804a99e341.tar.bz2
nvim-lspconfig-32c9817cf0b507ca18dd49ee11db9f804a99e341.tar.lz
nvim-lspconfig-32c9817cf0b507ca18dd49ee11db9f804a99e341.tar.xz
nvim-lspconfig-32c9817cf0b507ca18dd49ee11db9f804a99e341.tar.zst
nvim-lspconfig-32c9817cf0b507ca18dd49ee11db9f804a99e341.zip
docs: use a maintained fork for `kubernetes-json-schema` in the example (#3572)
The `instrumenta/kubernetes-json-schema` repo is apparently dead: https://github.com/instrumenta/kubernetes-json-schema/issues/32#issuecomment-1021133568 And nobody has the credentials anymore to archive it: https://github.com/instrumenta/kubeval/issues/268#issuecomment-1376490498 The recommended migration from instrumenta is to https://github.com/yannh/kubeconform, see (https://github.com/instrumenta/kubernetes-json-schema/issues/32#issuecomment-1021133568) and the recommended `kubernetes-json-schema` fork is also from the same new maintainer: https://github.com/yannh/kubernetes-json-schema/ Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
-rw-r--r--lua/lspconfig/configs/yamlls.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/configs/yamlls.lua b/lua/lspconfig/configs/yamlls.lua
index 10b86616..f3392a6b 100644
--- a/lua/lspconfig/configs/yamlls.lua
+++ b/lua/lspconfig/configs/yamlls.lua
@@ -64,7 +64,7 @@ require('lspconfig').yamlls.setup {
yaml = {
... -- other settings. note this overrides the lspconfig defaults.
schemas = {
- ["https://raw.githubusercontent.com/instrumenta/kubernetes-json-schema/master/v1.18.0-standalone-strict/all.json"] = "/*.k8s.yaml",
+ ["https://raw.githubusercontent.com/yannh/kubernetes-json-schema/refs/heads/master/v1.32.1-standalone-strict/all.json"] = "/*.k8s.yaml",
... -- other schemas
},
},