caching/vendor/knative.dev/pkg/reconciler/reconcile_common.go

56 lines
1.9 KiB
Go

/*
Copyright 2020 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package reconciler
import (
"context"
duckv1 "knative.dev/pkg/apis/duck/v1"
"knative.dev/pkg/logging"
)
const failedGenerationBump = "NewObservedGenFailure"
// PreProcessReconcile contains logic to apply before reconciliation of a resource.
func PreProcessReconcile(ctx context.Context, resource duckv1.KRShaped) {
newStatus := resource.GetStatus()
if newStatus.ObservedGeneration != resource.GetGeneration() {
condSet := resource.GetConditionSet()
manager := condSet.Manage(newStatus)
// Reset Ready/Successful to unknown. The reconciler is expected to overwrite this.
manager.MarkUnknown(condSet.GetTopLevelConditionType(), failedGenerationBump, "unsuccessfully observed a new generation")
}
}
// PostProcessReconcile contains logic to apply after reconciliation of a resource.
func PostProcessReconcile(ctx context.Context, resource duckv1.KRShaped) {
logger := logging.FromContext(ctx)
newStatus := resource.GetStatus()
mgr := resource.GetConditionSet().Manage(newStatus)
// Bump observed generation to denote that we have processed this
// generation regardless of success or failure.
newStatus.ObservedGeneration = resource.GetGeneration()
rc := mgr.GetTopLevelCondition()
if rc.Reason == failedGenerationBump {
logger.Warn("A reconciler observed a new generation without updating the resource status")
}
}