Skip to content

fix: removed not null constraint for releaseOverride #6044

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

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pkg/chartRepo/repository/ChartsRepository.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ type Chart struct {
ChartVersion string `sql:"chart_version"`
ChartRepo string `sql:"chart_repo"`
ChartRepoUrl string `sql:"chart_repo_url"`
Values string `sql:"values_yaml"` //json format // used at for release. this should be always updated
GlobalOverride string `sql:"global_override"` //json format // global overrides visible to user only
ReleaseOverride string `sql:"release_override"` //json format //image descriptor template used for injecting tigger metadata injection
PipelineOverride string `sql:"pipeline_override"` //json format // pipeline values -> strategy values
Status models.ChartStatus `sql:"status"` //(new , deployment-in-progress, deployed-To-production, error )
Values string `sql:"values_yaml"` //json format // used at for release. this should be always updated
GlobalOverride string `sql:"global_override"` //json format // global overrides visible to user only
ReleaseOverride string `sql:"release_override,notnull"` //json format //image descriptor template used for injecting tigger metadata injection
PipelineOverride string `sql:"pipeline_override"` //json format // pipeline values -> strategy values
Status models.ChartStatus `sql:"status"` //(new , deployment-in-progress, deployed-To-production, error )
Active bool `sql:"active"`
GitRepoUrl string `sql:"git_repo_url"` // Deprecated; use deployment_config table instead //git repository where chart is stored
ChartLocation string `sql:"chart_location"` //location within git repo where current chart is pointing
Expand Down