@@ -844,6 +844,7 @@ Enum indicating deploy tools used
844
844
| HELM | 1 | Helm Deployer |
845
845
| KUSTOMIZE | 2 | Kustomize Deployer |
846
846
| KUBECTL | 3 | Kubectl Deployer |
847
+ | KPT | 4 | kpt Deployer |
847
848
848
849
849
850
@@ -878,6 +879,7 @@ For Cancelled Error code, use range 800 to 850.<br>
878
879
| OK | 0 | A default status code for events that do not have an associated phase. Typically seen with the DevEndEvent event on success. |
879
880
| STATUSCHECK_SUCCESS | 200 | Status Check Success |
880
881
| BUILD_SUCCESS | 201 | Build Success |
882
+ | RENDER_SUCCESS | 204 | Render Success |
881
883
| DEPLOY_SUCCESS | 202 | Deploy Success |
882
884
| TEST_SUCCESS | 203 | Test Success |
883
885
| BUILD_PUSH_ACCESS_DENIED | 101 | Build error due to push access denied |
@@ -984,6 +986,7 @@ For Cancelled Error code, use range 800 to 850.<br>
984
986
| DEPLOY_PARSE_MANIFEST_IMAGES_ERR | 1021 | Error getting images from a kubernetes manifest. |
985
987
| DEPLOY_HELM_CREATE_NS_NOT_AVAILABLE | 1022 | Helm config ` createNamespace ` not available |
986
988
| DEPLOY_CLUSTER_INTERNAL_SYSTEM_ERR | 1023 | Kubernetes cluster reported an internal system error |
989
+ | DEPLOY_KPTFILE_INIT_ERR | 1024 | The Kptfile cannot be created via ` kpt live init ` . |
987
990
| TEST_USER_CONFIG_ERR | 1101 | Error expanding paths |
988
991
| TEST_CST_USER_ERR | 1102 | Error running container-structure-test |
989
992
| TEST_IMG_PULL_ERR | 1103 | Unable to docker pull image |
@@ -997,6 +1000,7 @@ For Cancelled Error code, use range 800 to 850.<br>
997
1000
| TEST_CUSTOM_DEPENDENCIES_CMD_ERR | 1112 | Error getting dependencies from command |
998
1001
| TEST_CUSTOM_DEPENDENCIES_UNMARSHALL_ERR | 1113 | Unmarshalling dependency output error |
999
1002
| TEST_CUSTOM_CMD_RETRIEVE_ERR | 1114 | Error retrieving the command |
1003
+ | RENDER_KPTFILE_INIT_ERR | 1501 | Render errors The Kptfile cannot be created via ` kpt pkg init ` . |
1000
1004
| CONFIG_FILE_PARSING_ERR | 1201 | Catch-all configuration file parsing error |
1001
1005
| CONFIG_FILE_NOT_FOUND_ERR | 1202 | Main configuration file not found |
1002
1006
| CONFIG_DEPENDENCY_NOT_FOUND_ERR | 1203 | Dependency configuration file not found |
@@ -1010,10 +1014,14 @@ For Cancelled Error code, use range 800 to 850.<br>
1010
1014
| CONFIG_MULTI_IMPORT_PROFILE_CONFLICT_ERR | 1211 | Same config imported at least twice with different set of profiles |
1011
1015
| CONFIG_PROFILES_NOT_FOUND_ERR | 1212 | Profile selection did not match known profile names |
1012
1016
| CONFIG_UNKNOWN_API_VERSION_ERR | 1213 | Config API version not found |
1017
+ | CONFIG_UNKNOWN_VALIDATOR | 1214 | The validator is not supported in skaffold-managed mode (not whitelisted). |
1018
+ | CONFIG_UNKNOWN_MUTATOR | 1215 | The mutator is not supported in skaffold-managed mode (not whitelisted). |
1013
1019
| INSPECT_UNKNOWN_ERR | 1301 | Catch-all ` skaffold inspect ` command error |
1014
1020
| INSPECT_BUILD_ENV_ALREADY_EXISTS_ERR | 1302 | Trying to add new build environment that already exists |
1015
1021
| INSPECT_BUILD_ENV_INCORRECT_TYPE_ERR | 1303 | Trying to modify build environment that doesn't exist |
1016
1022
| INSPECT_PROFILE_NOT_FOUND_ERR | 1304 | Trying to modify a profile that doesn't exist |
1023
+ | KPTFILE_INVALID_YAML_ERR | 1401 | Kptfile errors The Kptfile is not a valid yaml file |
1024
+ | KPTFILE_INVALID_SCHEMA_ERR | 1402 | The Kptfile is not a valid API schema |
1017
1025
1018
1026
1019
1027
@@ -1066,6 +1074,8 @@ Enum for Suggestion codes
1066
1074
| UNPAUSE_MINIKUBE | 502 | Minikube is paused: use ` minikube unpause ` |
1067
1075
| RUN_DOCKER_PULL | 551 | Run Docker pull for the image with v1 manifest and try again. |
1068
1076
| SET_RENDER_FLAG_OFFLINE_FALSE | 600 | Rerun with correct offline flag value. |
1077
+ | KPTFILE_MANUAL_INIT | 601 | Manually run ` kpt pkg init ` or ` kpt live init ` |
1078
+ | KPTFILE_CHECK_YAML | 602 | Check if the Kptfile is correct. |
1069
1079
| CONFIG_CHECK_FILE_PATH | 700 | Check configuration file path |
1070
1080
| CONFIG_CHECK_DEPENDENCY_DEFINITION | 701 | Check dependency config definition |
1071
1081
| CONFIG_CHANGE_NAMES | 702 | Change config name to avoid duplicates |
@@ -1074,6 +1084,8 @@ Enum for Suggestion codes
1074
1084
| CONFIG_CHECK_DEPENDENCY_PROFILES_SELECTION | 705 | Check active profile selection for dependency config |
1075
1085
| CONFIG_CHECK_PROFILE_SELECTION | 706 | Check profile selection flag |
1076
1086
| CONFIG_FIX_API_VERSION | 707 | Fix config API version or upgrade the skaffold binary |
1087
+ | CONFIG_WHITELISTED_VALIDATORS | 708 | Only the whitelisted validators are acceptable in skaffold-managed mode. |
1088
+ | CONFIG_WHITELISTED_MUTATORS | 709 | Only the whitelisted validators are acceptable in skaffold-managed mode. |
1077
1089
| INSPECT_USE_MODIFY_OR_NEW_PROFILE | 800 | Create new build env in a profile instead, or use the 'modify' command |
1078
1090
| INSPECT_USE_ADD_BUILD_ENV | 801 | Check profile selection, or use the 'add' command instead |
1079
1091
| INSPECT_CHECK_INPUT_PROFILE | 802 | Check profile flag value |
0 commit comments