feat: add skip_schema_validation to app_v2 - #2298
Merged
Merged
Conversation
Allows for installing applications using the Helm flag --skip-schema-validation, which is useful for air-gapped environments. (cherry picked from commit e4d6579)
Member
|
@alemorcuq, please resolve the conflicts without accidentally overwriting anything from https://github.com/rancher/terraform-provider-rancher2/pull/2297/changes#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6 ? |
Signed-off-by: matttrach <matt.trachier@suse.com>
alemorcuq
approved these changes
Jun 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request cherry-picks the changes from #2294 into release/v15
Addresses #2296 for #2295
WARNING!: to avoid having to resolve merge conflicts this PR is generated with 'git cherry-pick -X theirs'.
Please make sure to carefully inspect this PR so that you don't accidentally revert anything!
Copied from main PR:
Description
Allows for installing applications using the Helm flag --skip-schema-validation, which is useful for airgap environments.
In order to do so, I've also upgraded the
rancher/rancherdependency to a newer version to support the new field, added in rancher/rancher#55004. The rest of the dependency upgrades are automatically generated bygo mod tidy.Testing
Sample configuration trying to install a chart with a broken schema with
skip_schema_validationset tofalse:Results in an error:
However, when
skip_schema_validationis set totrue:It succeeds:
Not a breaking change since the flag is optional and the default behavior is
false.