Skip to content
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

Add skip-schema-validation flag #11510

Closed
wants to merge 4 commits into from
Closed

Conversation

JvD-Ericsson
Copy link
Contributor

@JvD-Ericsson JvD-Ericsson commented Nov 4, 2022

What this PR does / why we need it:
Adds a "--skip-schema-validation" flag option for helm install, upgrade, lint, and template that skips validation of the values.schema.json file.

closes #10398

Special notes for your reviewer:
This is my first time contributing, so please let me know if there is something I am doing wrong : )

If applicable:

  • this PR contains documentation
  • this PR contains unit tests
  • this PR has been tested for backwards compatibility

Signed-off-by: Jeff van Dam [email protected]

@pull-request-size pull-request-size bot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Nov 4, 2022
Adds a "--skip-schema-validation" flag option for helm install, upgrade, lint, and template that skips validation of the values.schema.json file.

Signed-off-by: JvD_Ericsson <[email protected]>
@joejulian joejulian added this to the 3.11.0 milestone Nov 8, 2022
@mattfarina mattfarina modified the milestones: 3.11.0, 3.12.0 Jan 18, 2023
Signed-off-by: Jeff van Dam <[email protected]>
@thisisrachelramos
Copy link

thisisrachelramos commented Mar 7, 2023

This is valuable for scenarios where one creates a chart and uses other mechanisms to validate the values.yaml file but wants to ensure their chart still produces valid YAML.

Since a lot of templates use Go template syntax, YAML validation is often enough.

@tim-beatson
Copy link

Could the maintainers look to progress this, please?
I have a use case for which I would very much like to skip schema validation.

@lucacome
Copy link
Contributor

any chance this will get in v3.12.0? 🙏

@xrow
Copy link

xrow commented Aug 19, 2023

Why is this open so long? Looks like ready and complete. Ty @JvD-Ericsson

@sumo-drosiek
Copy link

cc: @hickeyma

@mattfarina mattfarina modified the milestones: 3.13.0, 3.14.0 Sep 25, 2023
@Cerebus
Copy link

Cerebus commented Oct 5, 2023

Desperately need this, I have offline environments to support and forking charts just to remove validation is a royal PITA.

@jouve
Copy link
Contributor

jouve commented Oct 12, 2023

@JvD-Ericsson can you resolve the conflicts, maybe it will helm advance this PR ?

Signed-off-by: Jeff van Dam <[email protected]>
@JvD-Ericsson
Copy link
Contributor Author

Resolved now. Maybe @mattfarina or @joejulian can review now

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you added this file by mistake

@@ -45,7 +45,7 @@ var (
)

// Templates lints the templates in the Linter.
func Templates(linter *support.Linter, values map[string]interface{}, namespace string, strict bool) {
func Templates(linter *support.Linter, values map[string]interface{}, namespace string, strict bool, skipSchemaValidation bool) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this probably needs a new method like (ToRenderValuesSkipSchemaValidation) to keep api backward compatibilty ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct 👍 we can not change the signature of public functions in Helm 3

Signed-off-by: Jeff van Dam <[email protected]>
@anessi
Copy link
Contributor

anessi commented Jan 23, 2024

Tried a new approach in #12743

@mattfarina mattfarina modified the milestones: 3.15.0, 3.16.0 Jun 12, 2024
@vijays-rafay
Copy link

Any updated on this. I verified latest helm binary however couldn't find the flag --skip-schema-validation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Proposal: disable values schema validation for charts including a values.schema.json file