Giter VIP home page Giter VIP logo

Comments (4)

TANguyen1893 avatar TANguyen1893 commented on July 28, 2024 1

I was able to get it to work following the documentation from https://kubernetes.io/docs/api-reference/v1/definitions/ starting at v1.DeleteOptions
This is some of my code. I have written some helper functions such as extract_full_name which is not shown here:

   # necessary parameters in order to perform a cascading/non-cascading delete on a particular object 
   data = {
        'apiVersion': 'v1',
        'kind': 'ReplicationController',
        'orphanDependents': True}

    pykube_api = pykube.HTTPClient(pykube.KubeConfig.from_url(rest))

    # performing a cascading delete

    rc = pykube.ReplicationController.objects(pykube_api, 'tanguyen').get_by_name(extract_full_name(rc_obj))
    kw = rc.api_kwargs(data=data)
    response = pykube_api.delete(namespace=kw.get('namespace'), url=kw.get('url'), data=json.dumps(data))`

I am using the pykube HTTP Client to actually send a delete request instead of calling the delete method for a particular APIObject. In my case, I am retrieving a replication controller by its name, building a new dictionary with extra parameters including parameters from the replication controller and including that data when calling the delete method from the pykube. HTTP Client

from pykube.

TANguyen1893 avatar TANguyen1893 commented on July 28, 2024

Hi jcassee, were you able to find a way around this? I'm looking for exactly the same functionality. I have tried using the HTTP client object but still can't get it to work.

Thanks

from pykube.

jcassee avatar jcassee commented on July 28, 2024

Unfortunately, no...

from pykube.

jcassee avatar jcassee commented on July 28, 2024

Nice! I am impressed that you were able to get to these internals and manipulate the request. It's unfortunate that you had to, of course... I will try this as well.

from pykube.

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.