Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions manifests/claudie/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: ghcr.io/berops/claudie/ansibler
newTag: 1f565b0-4261
newTag: 4f42164-4266
- name: ghcr.io/berops/claudie/autoscaler-adapter
newTag: 1f565b0-4261
newTag: 4f42164-4266
- name: ghcr.io/berops/claudie/claudie-operator
newTag: 1f565b0-4261
newTag: 4f42164-4266
- name: ghcr.io/berops/claudie/kube-eleven
newTag: 1f565b0-4261
newTag: 4f42164-4266
- name: ghcr.io/berops/claudie/kuber
newTag: 1f565b0-4261
newTag: 4f42164-4266
- name: ghcr.io/berops/claudie/manager
newTag: 1f565b0-4261
newTag: 4f42164-4266
- name: ghcr.io/berops/claudie/terraformer
newTag: 1f565b0-4261
newTag: 4f42164-4266
2 changes: 1 addition & 1 deletion manifests/testing-framework/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ secretGenerator:

images:
- name: ghcr.io/berops/claudie/testing-framework
newTag: 1f565b0-4261
newTag: 4f42164-4266
7 changes: 6 additions & 1 deletion services/manager/internal/service/reconciliation.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,12 @@ func reconciliate(pending *spec.Config, desiredStates map[string]*spec.Clusters)

clusterResult[cluster] = Noop

{
// There might be an inFlight task stored that has a copy of the previous
// state that failed and the diff will reconciliate it so that it is rolledback.
//
// The rollback would invalidate the changes made in this block thus only
// update the TargetSize if there is no failed InFlight task.
if state.InFlight == nil {
// Check historical counters for any loopback changes that
// needs to be done before looking at scheduling tasks,
for np, counter := range state.Counters.K8SNodePoolScaleUpFailed {
Expand Down