Skip to content

Commit

Permalink
Remove none existent post-upgrade-job values
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalKorepta committed Dec 3, 2024
1 parent 88f915d commit 926cfe0
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5,501 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#### Fixed
* ability to overwrite annotation and labels in Job metadata
#### Removed
* non-existent post-upgrade-job values of the non-existent resource (removed in 5.9.6)

### [5.9.14](https://github.com/redpanda-data/helm-charts/releases/tag/redpanda-5.9.14) - 2024-11-28
#### Added
Expand Down
16 changes: 0 additions & 16 deletions charts/redpanda/values.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ type Values struct {
Resources RedpandaResources `json:"resources"`
Storage Storage `json:"storage"`
PostInstallJob PostInstallJob `json:"post_install_job"`
PostUpgradeJob PostUpgradeJob `json:"post_upgrade_job"`
Statefulset Statefulset `json:"statefulset"`
ServiceAccount ServiceAccountCfg `json:"serviceAccount"`
RBAC RBAC `json:"rbac"`
Expand Down Expand Up @@ -509,21 +508,6 @@ type PostInstallJob struct {
PodTemplate PodTemplate `json:"podTemplate"`
}

type PostUpgradeJob struct {
Resources corev1.ResourceRequirements `json:"resources"`
Affinity corev1.Affinity `json:"affinity"`
Enabled bool `json:"enabled"`
Labels map[string]string `json:"labels"`
Annotations map[string]string `json:"annotations"`
BackoffLimit *int32 `json:"backoffLimit"`
// Deprecated. Prefer [PodTemplate.Spec.Containers.Env].
ExtraEnv []corev1.EnvVar `json:"extraEnv"`
ExtraEnvFrom []corev1.EnvFromSource `json:"extraEnvFrom"`
// Deprecated. Prefer [PodTemplate.Spec.SecurityContext].
SecurityContext *corev1.SecurityContext `json:"securityContext"`
PodTemplate PodTemplate `json:"podTemplate"`
}

type PodTemplate struct {
Labels map[string]string `json:"labels,omitempty" jsonschema:"required"`
Annotations map[string]string `json:"annotations,omitempty" jsonschema:"required"`
Expand Down
Loading

0 comments on commit 926cfe0

Please sign in to comment.