-
-
Notifications
You must be signed in to change notification settings - Fork 0
Validate
Angel Campos edited this page Aug 17, 2024
·
3 revisions
To validate the resources generated through the build process with the make validate
command, we use the kubeconform tool.
make validate
This output will be printed on successful validation.
Check for installed tools
- kubeconform [OK]
Validating all resources using Kubeconform
- DEV
Validating DEV overlay resources
{
"resources": [],
"summary": {
"valid": 4,
"invalid": 0,
"errors": 0,
"skipped": 0
}
}
This message will be printed if the validation fails.
Check for installed tools
- kubeconform [OK]
Validating all resources using Kubeconform
- DEV
Validating DEV overlay resources
{
"resources": [
{
"filename": "config/dev/apps_v1_deployment_my-awesome-application.yaml",
"kind": "Deployment",
"name": "my-awesome-application",
"version": "apps/v2",
"status": "statusError",
"msg": "could not find schema for Deployment"
}
],
"summary": {
"valid": 3,
"invalid": 0,
"errors": 1,
"skipped": 0
}
}