-
-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How I can change version kubernetes schema from 1.22.4 to another #61
Comments
Did adding this JSON to your {
"yaml.schemas": {
"https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.23.5-standalone-strict/all.json": [ "/*.yaml" ]
}
} |
what path is it set to? |
no idea how YAML will handle the bare string, so try quoting it in |
is what I appear to have with: {
// https://github.com/dense-analysis/ale#faq-coc-nvim
"diagnostic.displayByAle": true,
// no idea if these even arent default.
"yaml.completion": true,
"yaml.format": true,
"yaml.validate": true,
"yaml.schemaStoreEnabled": true,
"json.format.enable": true,
// https://octetz.com/c/vim-k8s-yaml-support/
"yaml.schemas": {
// Use https://github.com/yannh/kubernetes-json-schema as they're actually updated.
"https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.23.5-standalone-strict/all.json": [ "/*.yaml" ]
// Local copy of above, purely so it has a better filename in coc-yaml
// "//Users/bea/.vim/k8s-v1.22.4-standalone-strict.json": [ "/*.yaml" ]
}
} This is my
If that helps at all? Though I am not sure I have been any. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In last update I found that in coc-yaml used
KUBERNETES_SCHEMA_URL="https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.22.4-standalone-strict/all.json"
How is it possible to change, for example, to 1.19.7 or 1.23.5 ?
The text was updated successfully, but these errors were encountered: