spotahome / redis-operator

Redis Operator creates/configures/manages high availability redis with sentinel automatic failover atop Kubernetes.
Apache License 2.0
1.48k stars 355 forks source link

Modernize patch syntax in kustomizations #687

Open larsks opened 4 months ago

larsks commented 4 months ago

The patchesStrategicMerge keyword has been deprecated in Kustomize for quite some time, and generates warnings with recent versions of Kustomize:

Warning: 'patchesStrategicMerge' is deprecated. Please use 'patches'
instead. Run 'kustomize edit fix' to update your Kustomization
automatically.

This commit replaces all instances of:

patchesStrategicMerge:
- somepatch.yaml

With:

patches:
- path: somepatch.yaml