Giter Site home page Giter Site logo

read proxy-url from kubeconf about python HOT 6 OPEN

kwibus avatar kwibus commented on August 17, 2024 2
read proxy-url from kubeconf

from python.

Comments (6)

richardnpaul avatar richardnpaul commented on August 17, 2024

Just came across this as I was trying to use the rubusta krr plugin to k9s and I use a proxy->vpn configuration to access the clusters which are locked down to certain IP addresses. I've had to work back through the python code to this dependency to figure out that proxy-url wasn't supported to then find that there are multiple people trying to get this use case working recently.

I will say though that the associated PR is missing any kind of test coverage which means it's unlikely to be accepted.

from python.

tianshihan818 avatar tianshihan818 commented on August 17, 2024

I tried to set the proxy as this:

from kubernetes import client, config

config.load_kube_config(DEFAULT_KUBECONFIG)
configuration = client.Configuration()
configuration.proxy = DEFAULT_PROXY
c = client.ApiClient(configuration=configuration)

And it works for the CoreV1Api methods:

client.CoreV1Api(c).list_namespaced_pod(...)

But doesn't work for:

dynamic.DynamicClient(c).resources.get(...)

Would you share any ideas? Thanks!

from python.

kwibus avatar kwibus commented on August 17, 2024

@richardnpaul merge request does now include unittest.
Did not have time until now to add them.
But i agree its better to add them

from python.

kwibus avatar kwibus commented on August 17, 2024

@tianshihan818 don`t know if this is best location to ask questions, But might be able to help you.

from kubernetes import client, config

config.load_kube_config(DEFAULT_KUBECONFIG)  # this sets Configuration._default

#  this creates a new empty Configuration not using Configuration._default
# configuration = client.Configuration()  
#  use this instead
configuration =  client.Configuration().get_default_copy()

configuration.proxy = DEFAULT_PROXY
c = client.ApiClient(configuration=configuration)

# are you sure this worked before?
client.CoreV1Api(c).list_namespaced_pod(...)

# I assume this will work now
dynamic.DynamicClient(c).resources.get(...) 

I am also new to this project, so i can be wrong.
But i hope this helps,

from python.

k8s-triage-robot avatar k8s-triage-robot commented on August 17, 2024

The Kubernetes project currently lacks enough contributors to adequately respond to all issues.

This bot triages un-triaged issues according to the following rules:

  • After 90d of inactivity, lifecycle/stale is applied
  • After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied
  • After 30d of inactivity since lifecycle/rotten was applied, the issue is closed

You can:

  • Mark this issue as fresh with /remove-lifecycle stale
  • Close this issue with /close
  • Offer to help out with Issue Triage

Please send feedback to sig-contributor-experience at kubernetes/community.

/lifecycle stale

from python.

k8s-triage-robot avatar k8s-triage-robot commented on August 17, 2024

The Kubernetes project currently lacks enough active contributors to adequately respond to all issues.

This bot triages un-triaged issues according to the following rules:

  • After 90d of inactivity, lifecycle/stale is applied
  • After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied
  • After 30d of inactivity since lifecycle/rotten was applied, the issue is closed

You can:

  • Mark this issue as fresh with /remove-lifecycle rotten
  • Close this issue with /close
  • Offer to help out with Issue Triage

Please send feedback to sig-contributor-experience at kubernetes/community.

/lifecycle rotten

from python.

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.