fix(platform): correct cozy-proxy releaseName to avoid conflict with installer (#2127)
## What this PR does Fixes cozy-proxy `releaseName` from `cozystack` to `cozy-proxy` in paas-full and distro-full bundles. The cozy-proxy component was incorrectly configured with `releaseName: cozystack`, which is the same name used by the installer helm release. During upgrade to v1.0, the cozy-proxy HelmRelease reconciles and overwrites the installer release, deleting the cozystack-operator deployment. ### Release note ```release-note [platform] Fix cozy-proxy releaseName collision with installer that caused operator deletion during v1.0 upgrade ```
This commit is contained in:
commit
d2ac669b29
2 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ releases:
|
|||
dependsOn: [cilium]
|
||||
|
||||
- name: cozy-proxy
|
||||
releaseName: cozystack
|
||||
releaseName: cozy-proxy
|
||||
chart: cozy-cozy-proxy
|
||||
namespace: cozy-system
|
||||
optional: true
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ releases:
|
|||
dependsOn: [cilium,kubeovn]
|
||||
|
||||
- name: cozy-proxy
|
||||
releaseName: cozystack
|
||||
releaseName: cozy-proxy
|
||||
chart: cozy-cozy-proxy
|
||||
namespace: cozy-system
|
||||
dependsOn: [cilium,kubeovn,multus]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue