You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add `--skip-validations` and `--validate-only` flags to `deploy` and `validate` commands.
6
+
7
+
These mutually exclusive flags accept a comma-separated list of validation tests (`configuration`, `connections`, `sync-config`) and allow users to skip or isolate specific validation checks. This is useful when deploying behind VPC endpoints, dealing with transient sync config timeouts, or bypassing schema validation for older configs.
@@ -51,7 +51,7 @@ export function generateValidationTestFlags(params?: GenerateValidationTestFlags
51
51
'skip-validations': Flags.string({
52
52
description: `Comma-separated list of validation tests to skip. Options: ${optionsToUse.join(', ')}. Example: --skip-validations="${optionsToUse[0]}"`,
@@ -60,7 +60,7 @@ export function generateValidationTestFlags(params?: GenerateValidationTestFlags
60
60
flags['validate-only']=Flags.string({
61
61
description: `Comma-separated list of validation tests to run, skipping all others. Options: ${optionsToUse.join(', ')}. Example: --validate-only="${optionsToUse[0]}"`,
0 commit comments