Skip to content

Commit

Permalink
NH-61355 - Fix issue on upgrade (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
etichy authored Dec 18, 2023
1 parent 8884a5c commit 836d267
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions deploy/helm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [3.2.0-alpha.10] - 2023-12-18

- Switched deployments into Recreate strategy

## [3.2.0-alpha.9] - 2023-12-15

### Changed
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: swo-k8s-collector
version: 3.2.0-alpha.9
version: 3.2.0-alpha.10
appVersion: "0.9.1"
description: SolarWinds Kubernetes Integration
keywords:
Expand Down
2 changes: 2 additions & 0 deletions deploy/helm/templates/events-collector-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ metadata:
{{ include "common.labels" . | indent 4 }}
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app: {{ include "common.fullname" (tuple . "-events") }}
Expand Down
2 changes: 2 additions & 0 deletions deploy/helm/templates/metrics-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ metadata:
{{ include "common.labels" . | indent 4 }}
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app: {{ include "common.fullname" (tuple . "-metrics") }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
matchLabels:
app: {{ include "common.fullname" (tuple . "-network-k8s-collector") }}
strategy:
type: RollingUpdate
type: Recreate
template:
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/templates/network/reducer-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
spec:
replicas: 1
strategy:
type: RollingUpdate
type: Recreate
selector:
matchLabels:
app: {{ include "common.fullname" (tuple . "-network-k8s-reducer") }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Fargate logging ConfigMap spec should include additional filters when they are c
Match *
Add sw.k8s.cluster.uid <CLUSTER_UID>
Add sw.k8s.log.type container
Add sw.k8s.agent.manifest.version "3.2.0-alpha.9"
Add sw.k8s.agent.manifest.version "3.2.0-alpha.10"
flb_log_cw: "false"
output.conf: |
[OUTPUT]
Expand Down Expand Up @@ -64,7 +64,7 @@ Fargate logging ConfigMap spec should match snapshot when Fargate logging is ena
Match *
Add sw.k8s.cluster.uid <CLUSTER_UID>
Add sw.k8s.log.type container
Add sw.k8s.agent.manifest.version "3.2.0-alpha.9"
Add sw.k8s.agent.manifest.version "3.2.0-alpha.10"
flb_log_cw: "false"
output.conf: |
[OUTPUT]
Expand Down

0 comments on commit 836d267

Please sign in to comment.