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

Field handlers are not triggered with overly specific fields #190

Closed
kopf-archiver bot opened this issue Aug 18, 2020 · 0 comments
Closed

Field handlers are not triggered with overly specific fields #190

kopf-archiver bot opened this issue Aug 18, 2020 · 0 comments
Labels
archive bug Something isn't working

Comments

@kopf-archiver
Copy link

kopf-archiver bot commented Aug 18, 2020

An issue by nolar at 2019-09-25 20:46:27+00:00
Original URL: zalando-incubator/kopf#190
 

Expected Behavior

The field handler should handle all the relevant field changes, no matter what else is changed, or from which original state.

Actual Behavior

The handler is only triggered when a deeply nested specific field is changed/added/removed, but not when the whole structure that contains it is added/changed/removed.

Steps to reproduce

import kopf

@kopf.on.field('zalando.org', 'v1', 'kopfexamples', field='spec.field')
def fn(**kwargs):
    pass

Example original object (note the absence of spec!):

apiVersion: zalando.org/v1
kind: KopfExample
metadata:
  name: kopf-example-1

Changed object:

apiVersion: zalando.org/v1
kind: KopfExample
metadata:
  name: kopf-example-1
spec:
  field: value

Specifications

kopf==0.21
@kopf-archiver kopf-archiver bot closed this as completed Aug 18, 2020
@kopf-archiver kopf-archiver bot changed the title [archival placeholder] Field handlers are not triggered with overly specific fields Aug 19, 2020
@kopf-archiver kopf-archiver bot added the bug Something isn't working label Aug 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
archive bug Something isn't working
Projects
None yet
Development

No branches or pull requests

0 participants