Code Monkey home page Code Monkey logo

Comments (6)

asteven avatar asteven commented on July 24, 2024

I'm probably missing something, but why not just do this?

@kopf.on.update('httprequests', retries=3, backoff=10)
def handler(memo: kopf.Memo, spec, name, namespace, logger, **kwargs):
    r = requests.request(some_url)
    if r.status_code == 500:
        raise kopf.TemporaryError(f"Resource at {some_url} returns {r.status_code}", delay=60)

from kopf.

lkoniecz avatar lkoniecz commented on July 24, 2024

That does not update status field.

from kopf.

nolar avatar nolar commented on July 24, 2024

There is the patch kwarg. You can populate it with whatever you want during the handler execution. Kopf will add a few things of its own later after the error (or success) — and will apply it to the k8s api.

Manually patching the resource is also a right way to go, there is nothing wrong with it (except for one extremely rare edge case under high load, which will be fixed soon). The only downside is that you will have 2 patch api calls: one from you, one from kopf; and you will also have to authenticate somehow not with kopf’s login machinery.

from kopf.

lkoniecz avatar lkoniecz commented on July 24, 2024

@nolar
if I read the docs correctly https://kopf.readthedocs.io/en/stable/kwargs/#patching patch is a pass through object that I can fill with anything that will get passed to the patching logic

@kopf.on.update('httprequests', retries=3, backoff=10)
def handler(memo: kopf.Memo, spec, name, namespace, logger, **kwargs):
    r = requests.request(some_url)
    if r.status_code == 500:
       kwargs['patch'] = {
            'status': {
                'handler': {
                    'httpStatusCode': 500
                }
            }
        }
        raise kopf.TemporaryError(f"Resource at {some_url} returns {r.status_code}", delay=60)

is it the right way to do? I am asking, because following snippet does not work.

from kopf.

nolar avatar nolar commented on July 24, 2024

The right way. But in your case, you override the kwarg key in the local dict, you do not modify the object itself. Try this:

def …(…, patch, **kwargs):
    patch.status.setdefault('handler', {})['httpStatusCode'] = 500

from kopf.

lkoniecz avatar lkoniecz commented on July 24, 2024

Perfect, it works.

Thanks for the guidance.

Closing/

from kopf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.