Skip to content
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

Fixing Rollout restart, Previously would trigger rollout deployment strategy #724

Merged
merged 2 commits into from
Aug 20, 2024

Conversation

jangeja
Copy link
Contributor

@jangeja jangeja commented Aug 7, 2024

The current rollout update method triggers a rollout strategy. This is what I believe to not be the desired outcome.

This issue clearly defines the problem.

Below is the old rollout update method that clearly shows the rollout deployment strategy triggered instead of restart all of the pods.

After updating the dependent secret, a canary rollout is triggered, which imo is not desired.

Name:            canary-demo
Namespace:       default
Status:          ॥ Paused
Message:         CanaryPauseStep
Strategy:        Canary
  Step:          1/3
  SetWeight:     20
  ActualWeight:  20
Images:          nginx:latest (canary, stable)
Replicas:
  Desired:       5
  Current:       5
  Updated:       1
  Ready:         5
  Available:     5

NAME                                     KIND        STATUS        AGE    INFO
⟳ canary-demo                            Rollout     ॥ Paused      62m
├──# revision:16
│  └──⧉ canary-demo-5df7ffbff            ReplicaSet  ✔ Healthy     8s     canary
│     └──□ canary-demo-5df7ffbff-4b7bd   Pod         ✔ Running     8s     ready:1/1
├──# revision:15
│  └──⧉ canary-demo-698b5f88f7           ReplicaSet  ✔ Healthy     27m    stable
│     ├──□ canary-demo-698b5f88f7-hqct9  Pod         ✔ Running     2m52s  ready:1/1
│     ├──□ canary-demo-698b5f88f7-qnrkd  Pod         ✔ Running     2m50s  ready:1/1
│     ├──□ canary-demo-698b5f88f7-ntvph  Pod         ✔ Running     2m46s  ready:1/1
│     └──□ canary-demo-698b5f88f7-p4wdd  Pod         ✔ Running     2m44s  ready:1/1

After my change, I tested changing a secret while we were mid rollout, and during no rollout. The functionality remained the same, with all pods being restarted without triggering a rollout.

After changing a secret, not during a rollout:

Name:            canary-demo
Namespace:       default
Status:          �[32m✔�[0m Healthy
Strategy:        Canary
  Step:          3/3
  SetWeight:     100
  ActualWeight:  100
Images:          nginx:latest (�[32mstable�[0m)
Replicas:
  Desired:       5
  Current:       5
  Updated:       5
  Ready:         5
  Available:     5

NAME                                    KIND        STATUS        AGE    INFO
⟳ canary-demo                           Rollout     �[32m✔�[0m Healthy     68m    
├──# revision:16                                                         
│  └──⧉ �[32mcanary-demo-5df7ffbff�[0m           ReplicaSet  �[32m✔�[0m Healthy     6m38s  �[32mstable�[0m
│     ├──□ canary-demo-5df7ffbff-xpxz9  Pod         �[32m✔�[0m Running     15s    ready:1/1
│     ├──□ canary-demo-5df7ffbff-tv2mx  Pod         �[32m✔�[0m Running     13s    ready:1/1
│     ├──□ canary-demo-5df7ffbff-v9mvr  Pod         �[32m✔�[0m Running     11s    ready:1/1
│     ├──□ canary-demo-5df7ffbff-ssdwr  Pod         �[32m✔�[0m Running     9s     ready:1/1
│     └──□ canary-demo-5df7ffbff-7w6fv  Pod         �[32m✔�[0m Running     7s     ready:1/1
└──# revision:15                                                         
   └──⧉ canary-demo-698b5f88f7          ReplicaSet  �[0m•�[0m ScaledDown  33m    

After changing the secret, during canary rollout

Name:            canary-demo
Namespace:       default
Status:          �[0m॥�[0m Paused
Message:         CanaryPauseStep
Strategy:        Canary
  Step:          1/3
  SetWeight:     20
  ActualWeight:  20
Images:          nginx:latest (�[33mcanary�[0m, �[32mstable�[0m)
Replicas:
  Desired:       5
  Current:       5
  Updated:       1
  Ready:         5
  Available:     5

NAME                                     KIND        STATUS        AGE    INFO
⟳ canary-demo                            Rollout     �[0m॥�[0m Paused      70m    
├──# revision:17                                                          
│  └──⧉ �[33mcanary-demo-5b4548699b�[0m           ReplicaSet  �[32m✔�[0m Healthy     44s    �[33mcanary�[0m
│     └──□ canary-demo-5b4548699b-6vqd4  Pod         �[32m✔�[0m Running     20s    ready:1/1
├──# revision:16                                                          
│  └──⧉ �[32mcanary-demo-5df7ffbff�[0m            ReplicaSet  �[32m✔�[0m Healthy     8m30s  �[32mstable�[0m
│     ├──□ canary-demo-5df7ffbff-r82xb   Pod         �[32m✔�[0m Running     19s    ready:1/1
│     ├──□ canary-demo-5df7ffbff-l7ss8   Pod         �[32m✔�[0m Running     17s    ready:1/1
│     ├──□ canary-demo-5df7ffbff-l9vtq   Pod         �[32m✔�[0m Running     14s    ready:1/1
│     └──□ canary-demo-5df7ffbff-wnhlg   Pod         �[32m✔�[0m Running     12s    ready:1/1
└──# revision:15                                                          
   └──⧉ canary-demo-698b5f88f7           ReplicaSet  �[0m•�[0m ScaledDown  35m    

@jangeja
Copy link
Contributor Author

jangeja commented Aug 8, 2024

@IdanAdar Can I get a set of 👀 on this? We had an issue related to the argo rollouts issue described in this ticket. Was wondering your thoughts on this simple change.

@IdanAdar
Copy link
Contributor

IdanAdar commented Aug 9, 2024

Wish I could help, I'm not a maintainer.

@bnallapeta
Copy link

@jangeja could you please fix the issues with golint?

@bnallapeta
Copy link

looks like the linting issue is on another file unrelated to this change.

@jangeja
Copy link
Contributor Author

jangeja commented Aug 16, 2024

@bnallapeta I've updated my branch with the latest master. Can you rerun the CI, and re-review 🥺

@jangeja
Copy link
Contributor Author

jangeja commented Aug 19, 2024

@bnallapeta Looks like the CI passed! Can we get this merged and released?

@bnallapeta
Copy link

@MuneebAijaz PTAL.

@MuneebAijaz MuneebAijaz merged commit 76372be into stakater:master Aug 20, 2024
5 checks passed
lumiere-bot bot referenced this pull request in coolguy1771/home-ops Aug 29, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [reloader](https://github.com/stakater/Reloader) | minor |
`1.0.121` -> `1.1.0` |

---

### Release Notes

<details>
<summary>stakater/Reloader (reloader)</summary>

###
[`v1.1.0`](https://github.com/stakater/Reloader/releases/tag/v1.1.0)

[Compare
Source](https://github.com/stakater/Reloader/compare/v1.0.121...v1.1.0)

#### Announcement 📢 📢 📢

Discussions are being done internally on `how to release helm charts`,
it is highly likely that the release **versioning of helm chart and
images will become divergent** from next release onwards.
(Different versioning for both artifacts, for example git release of
`v1.1.1` might not have a chart released with the same version)
Pls edit your automated workflows to accommodate for this change before
the new release to have seamless updates in your clusters.

#### What's Changed

- Manual release workflows by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/722](https://github.com/stakater/Reloader/pull/722)
- fixing go vet issues with logrus by
[@&#8203;bnallapeta](https://github.com/bnallapeta) in
[https://github.com/stakater/Reloader/pull/727](https://github.com/stakater/Reloader/pull/727)
- Fixing Rollout restart, Previously would trigger rollout deployment
strategy by [@&#8203;jangeja](https://github.com/jangeja) in
[https://github.com/stakater/Reloader/pull/724](https://github.com/stakater/Reloader/pull/724)
- Misc fixes to workflows by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/728](https://github.com/stakater/Reloader/pull/728)
- docs: update wording in readme by
[@&#8203;deggja](https://github.com/deggja) in
[https://github.com/stakater/Reloader/pull/730](https://github.com/stakater/Reloader/pull/730)
- chore(deps): update dependency stakater/vale-package to v0.0.33 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/stakater/Reloader/pull/721](https://github.com/stakater/Reloader/pull/721)
- Reduce footprint of UBI images by
[@&#8203;bainsy88](https://github.com/bainsy88) in
[https://github.com/stakater/Reloader/pull/717](https://github.com/stakater/Reloader/pull/717)
- Update dependencies by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/735](https://github.com/stakater/Reloader/pull/735)

#### New Contributors

- [@&#8203;jangeja](https://github.com/jangeja) made their
first contribution in
[https://github.com/stakater/Reloader/pull/724](https://github.com/stakater/Reloader/pull/724)
- [@&#8203;deggja](https://github.com/deggja) made their first
contribution in
[https://github.com/stakater/Reloader/pull/730](https://github.com/stakater/Reloader/pull/730)
- [@&#8203;bainsy88](https://github.com/bainsy88) made their
first contribution in
[https://github.com/stakater/Reloader/pull/717](https://github.com/stakater/Reloader/pull/717)

**Full Changelog**:
stakater/Reloader@v1.0.121...v1.1.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41Ni4zIiwidXBkYXRlZEluVmVyIjoiMzguNTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvaGVsbSIsInR5cGUvbWlub3IiXX0=-->

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
lumiere-bot bot referenced this pull request in coolguy1771/home-ops Aug 29, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [reloader](https://github.com/stakater/Reloader) | minor |
`1.0.121` -> `1.1.0` |

---

### Release Notes

<details>
<summary>stakater/Reloader (reloader)</summary>

###
[`v1.1.0`](https://github.com/stakater/Reloader/releases/tag/v1.1.0)

[Compare
Source](https://github.com/stakater/Reloader/compare/v1.0.121...v1.1.0)

#### Announcement 📢 📢 📢

Discussions are being done internally on `how to release helm charts`,
it is highly likely that the release **versioning of helm chart and
images will become divergent** from next release onwards.
(Different versioning for both artifacts, for example git release of
`v1.1.1` might not have a chart released with the same version)
Pls edit your automated workflows to accommodate for this change before
the new release to have seamless updates in your clusters.

#### What's Changed

- Manual release workflows by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/722](https://github.com/stakater/Reloader/pull/722)
- fixing go vet issues with logrus by
[@&#8203;bnallapeta](https://github.com/bnallapeta) in
[https://github.com/stakater/Reloader/pull/727](https://github.com/stakater/Reloader/pull/727)
- Fixing Rollout restart, Previously would trigger rollout deployment
strategy by [@&#8203;jangeja](https://github.com/jangeja) in
[https://github.com/stakater/Reloader/pull/724](https://github.com/stakater/Reloader/pull/724)
- Misc fixes to workflows by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/728](https://github.com/stakater/Reloader/pull/728)
- docs: update wording in readme by
[@&#8203;deggja](https://github.com/deggja) in
[https://github.com/stakater/Reloader/pull/730](https://github.com/stakater/Reloader/pull/730)
- chore(deps): update dependency stakater/vale-package to v0.0.33 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/stakater/Reloader/pull/721](https://github.com/stakater/Reloader/pull/721)
- Reduce footprint of UBI images by
[@&#8203;bainsy88](https://github.com/bainsy88) in
[https://github.com/stakater/Reloader/pull/717](https://github.com/stakater/Reloader/pull/717)
- Update dependencies by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/735](https://github.com/stakater/Reloader/pull/735)

#### New Contributors

- [@&#8203;jangeja](https://github.com/jangeja) made their
first contribution in
[https://github.com/stakater/Reloader/pull/724](https://github.com/stakater/Reloader/pull/724)
- [@&#8203;deggja](https://github.com/deggja) made their first
contribution in
[https://github.com/stakater/Reloader/pull/730](https://github.com/stakater/Reloader/pull/730)
- [@&#8203;bainsy88](https://github.com/bainsy88) made their
first contribution in
[https://github.com/stakater/Reloader/pull/717](https://github.com/stakater/Reloader/pull/717)

**Full Changelog**:
stakater/Reloader@v1.0.121...v1.1.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41Ni4zIiwidXBkYXRlZEluVmVyIjoiMzguNTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvaGVsbSIsInR5cGUvbWlub3IiXX0=-->

Co-authored-by: lumiere-bot[bot] <98047013+lumiere-bot[bot]@users.noreply.github.com>
spiceratops referenced this pull request in spiceratops/k8s-gitops Aug 30, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [reloader](https://github.com/stakater/Reloader) | minor |
`1.0.121` -> `1.1.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>stakater/Reloader (reloader)</summary>

###
[`v1.1.0`](https://github.com/stakater/Reloader/releases/tag/v1.1.0)

[Compare
Source](https://github.com/stakater/Reloader/compare/v1.0.121...v1.1.0)

#### Announcement 📢 📢 📢

Discussions are being done internally on `how to release helm charts`,
it is highly likely that the release **versioning of helm chart and
images will become divergent** from next release onwards.
(Different versioning for both artifacts, for example git release of
`v1.1.1` might not have a chart released with the same version)
Pls edit your automated workflows to accommodate for this change before
the new release to have seamless updates in your clusters.

#### What's Changed

- Manual release workflows by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/722](https://github.com/stakater/Reloader/pull/722)
- fixing go vet issues with logrus by
[@&#8203;bnallapeta](https://github.com/bnallapeta) in
[https://github.com/stakater/Reloader/pull/727](https://github.com/stakater/Reloader/pull/727)
- Fixing Rollout restart, Previously would trigger rollout deployment
strategy by [@&#8203;jangeja](https://github.com/jangeja) in
[https://github.com/stakater/Reloader/pull/724](https://github.com/stakater/Reloader/pull/724)
- Misc fixes to workflows by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/728](https://github.com/stakater/Reloader/pull/728)
- docs: update wording in readme by
[@&#8203;deggja](https://github.com/deggja) in
[https://github.com/stakater/Reloader/pull/730](https://github.com/stakater/Reloader/pull/730)
- chore(deps): update dependency stakater/vale-package to v0.0.33 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/stakater/Reloader/pull/721](https://github.com/stakater/Reloader/pull/721)
- Reduce footprint of UBI images by
[@&#8203;bainsy88](https://github.com/bainsy88) in
[https://github.com/stakater/Reloader/pull/717](https://github.com/stakater/Reloader/pull/717)
- Update dependencies by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/735](https://github.com/stakater/Reloader/pull/735)

#### New Contributors

- [@&#8203;jangeja](https://github.com/jangeja) made their
first contribution in
[https://github.com/stakater/Reloader/pull/724](https://github.com/stakater/Reloader/pull/724)
- [@&#8203;deggja](https://github.com/deggja) made their first
contribution in
[https://github.com/stakater/Reloader/pull/730](https://github.com/stakater/Reloader/pull/730)
- [@&#8203;bainsy88](https://github.com/bainsy88) made their
first contribution in
[https://github.com/stakater/Reloader/pull/717](https://github.com/stakater/Reloader/pull/717)

**Full Changelog**:
stakater/Reloader@v1.0.121...v1.1.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41Ni4zIiwidXBkYXRlZEluVmVyIjoiMzguNTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsicmVub3ZhdGUvaGVsbSIsInR5cGUvbWlub3IiXX0=-->
renovate bot referenced this pull request in anza-labs/manifests Sep 11, 2024
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [reloader](https://github.com/stakater/Reloader) | minor |
`1.0.121` -> `1.1.0` |

---

### Release Notes

<details>
<summary>stakater/Reloader (reloader)</summary>

###
[`v1.1.0`](https://github.com/stakater/Reloader/releases/tag/v1.1.0)

[Compare
Source](https://github.com/stakater/Reloader/compare/v1.0.121...v1.1.0)

##### Announcement 📢 📢 📢

Discussions are being done internally on `how to release helm charts`,
it is highly likely that the release **versioning of helm chart and
images will become divergent** from next release onwards.
(Different versioning for both artifacts, for example git release of
`v1.1.1` might not have a chart released with the same version)
Pls edit your automated workflows to accommodate for this change before
the new release to have seamless updates in your clusters.

##### What's Changed

- Manual release workflows by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/722](https://github.com/stakater/Reloader/pull/722)
- fixing go vet issues with logrus by
[@&#8203;bnallapeta](https://github.com/bnallapeta) in
[https://github.com/stakater/Reloader/pull/727](https://github.com/stakater/Reloader/pull/727)
- Fixing Rollout restart, Previously would trigger rollout deployment
strategy by [@&#8203;jangeja](https://github.com/jangeja) in
[https://github.com/stakater/Reloader/pull/724](https://github.com/stakater/Reloader/pull/724)
- Misc fixes to workflows by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/728](https://github.com/stakater/Reloader/pull/728)
- docs: update wording in readme by
[@&#8203;deggja](https://github.com/deggja) in
[https://github.com/stakater/Reloader/pull/730](https://github.com/stakater/Reloader/pull/730)
- chore(deps): update dependency stakater/vale-package to v0.0.33 by
[@&#8203;renovate](https://github.com/renovate) in
[https://github.com/stakater/Reloader/pull/721](https://github.com/stakater/Reloader/pull/721)
- Reduce footprint of UBI images by
[@&#8203;bainsy88](https://github.com/bainsy88) in
[https://github.com/stakater/Reloader/pull/717](https://github.com/stakater/Reloader/pull/717)
- Update dependencies by
[@&#8203;MuneebAijaz](https://github.com/MuneebAijaz) in
[https://github.com/stakater/Reloader/pull/735](https://github.com/stakater/Reloader/pull/735)

##### New Contributors

- [@&#8203;jangeja](https://github.com/jangeja) made their
first contribution in
[https://github.com/stakater/Reloader/pull/724](https://github.com/stakater/Reloader/pull/724)
- [@&#8203;deggja](https://github.com/deggja) made their first
contribution in
[https://github.com/stakater/Reloader/pull/730](https://github.com/stakater/Reloader/pull/730)
- [@&#8203;bainsy88](https://github.com/bainsy88) made their
first contribution in
[https://github.com/stakater/Reloader/pull/717](https://github.com/stakater/Reloader/pull/717)

**Full Changelog**:
stakater/Reloader@v1.0.121...v1.1.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/anza-labs/manifests).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41OS4yIiwidXBkYXRlZEluVmVyIjoiMzguNzQuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants