首页 \ 问答 \ Kubenetes Java客户端 - OpenId身份验证支持(Kubenetes Java client - OpenId auth support)

Kubenetes Java客户端 - OpenId身份验证支持(Kubenetes Java client - OpenId auth support)

我正在尝试为少数用例使用kubernetes java客户端。

https://github.com/kubernetes-client/java

我们的kubernetes集群已通过OpenId身份验证实施。

不幸的是,Java客户端不支持OpenId身份验证。

Java代码: -

final ApiClient client = io.kubernetes.client.util.Config.defaultClient();
        Configuration.setDefaultApiClient(client);

        CoreV1Api api = new CoreV1Api();
        V1PodList list = api.listPodForAllNamespaces(null, null, null, null, null, null, null, null, null);
        for (V1Pod item : list.getItems()) {
            System.out.println(item.getMetadata().getName());
        }

错误: -

13:25:22.549 [main] ERROR io.kubernetes.client.util.KubeConfig - Unknown auth provider: oidc
Exception in thread "main" io.kubernetes.client.ApiException: Forbidden
    at io.kubernetes.client.ApiClient.handleResponse(ApiClient.java:882)
    at io.kubernetes.client.ApiClient.execute(ApiClient.java:798)
    at io.kubernetes.client.apis.CoreV1Api.listPodForAllNamespacesWithHttpInfo(CoreV1Api.java:18462)
    at io.kubernetes.client.apis.CoreV1Api.listPodForAllNamespaces(CoreV1Api.java:18440)

有没有计划支持Java客户端的OpenId身份验证。 或者,还有其他方法吗?

谢谢


I am trying using kubernetes java client for few use cases.

https://github.com/kubernetes-client/java

Our kubernetes cluster is been implemented with OpenId authentication.

Unfortunately, the java client doesnt support OpenId auth.

Java code :-

final ApiClient client = io.kubernetes.client.util.Config.defaultClient();
        Configuration.setDefaultApiClient(client);

        CoreV1Api api = new CoreV1Api();
        V1PodList list = api.listPodForAllNamespaces(null, null, null, null, null, null, null, null, null);
        for (V1Pod item : list.getItems()) {
            System.out.println(item.getMetadata().getName());
        }

Error :-

13:25:22.549 [main] ERROR io.kubernetes.client.util.KubeConfig - Unknown auth provider: oidc
Exception in thread "main" io.kubernetes.client.ApiException: Forbidden
    at io.kubernetes.client.ApiClient.handleResponse(ApiClient.java:882)
    at io.kubernetes.client.ApiClient.execute(ApiClient.java:798)
    at io.kubernetes.client.apis.CoreV1Api.listPodForAllNamespacesWithHttpInfo(CoreV1Api.java:18462)
    at io.kubernetes.client.apis.CoreV1Api.listPodForAllNamespaces(CoreV1Api.java:18440)

Is there any plan to support OpenId auth with the Java client. Or, is there any other way?

Thanks


原文:https://stackoverflow.com/questions/50612912
更新时间:2023-11-20 06:11

最满意答案

好吧,所以你有这些白色条的原因确实是bootstrap。 即container-fluid类:

padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;

因此,请进入您的app.component.html并向该div添加合适的ID:

<div class='container-fluid' id="wrapper">
    <div class='row'>
        <div class='col-sm-12 body-content'>
            <router-outlet></router-outlet>
        </div>
    </div>
</div>

将规则添加到您的add.component.css

#wrapper, .body-content {
    padding:0;
}

摆脱底部的白色条纹就像去除margin-bottom: 20px;一样简单margin-bottom: 20px;

<div class="overlay_header" style="text-align: center; margin-bottom: 20px;">
                <h1 class="overlay_header_heading"><!–– Thanks For Signing Up!--></h1>

                <p style="color: #ffffff;"><a href="https://www.eastbay.com/customerserv/help:privacyPolicy/" target="_blank" title="View our Privacy Policy" style="color: #ffffff;">Privacy&nbsp;Policy</a> and <a href="https://www.eastbay.com/customerserv/help:terms/" target="_blank" title="View our Terms of Use" style="color: #ffffff;">Terms&nbsp;of&nbsp;Use</a></p>
</div>

如果您仍然启用HMR,则更改应该立即在浏览器中可见。


Ok, so the reason you have those white bars is indeed bootstrap. Namely the container-fluid class:

padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;

So, go into your app.component.html and add a suitable id to that div:

<div class='container-fluid' id="wrapper">
    <div class='row'>
        <div class='col-sm-12 body-content'>
            <router-outlet></router-outlet>
        </div>
    </div>
</div>

Add a rule to your add.component.css

#wrapper, .body-content {
    padding:0;
}

Getting rid of the white bar at the bottom is as easy as removing margin-bottom: 20px; from

<div class="overlay_header" style="text-align: center; margin-bottom: 20px;">
                <h1 class="overlay_header_heading"><!–– Thanks For Signing Up!--></h1>

                <p style="color: #ffffff;"><a href="https://www.eastbay.com/customerserv/help:privacyPolicy/" target="_blank" title="View our Privacy Policy" style="color: #ffffff;">Privacy&nbsp;Policy</a> and <a href="https://www.eastbay.com/customerserv/help:terms/" target="_blank" title="View our Terms of Use" style="color: #ffffff;">Terms&nbsp;of&nbsp;Use</a></p>
</div>

If you still have HMR enabled, the changes should be immediately visible in the browser.

相关问答

更多

最新问答

更多
  • python的访问器方法有哪些
  • 使用Zend Framework 2中的JOIN sql检索数据(Retrieve data using JOIN sql in Zend Framework 2)
  • 透明度错误IE11(Transparency bug IE11)
  • linux的基本操作命令。。。
  • 响应navi重叠h1和nav上的h1链接不起作用(Responsive navi overlaps h1 and navi links on h1 isn't working)
  • 在C中读取文件:“r”和“a +”标志的不同行为(Reading a File in C: different behavior for “r” and “a+” flags)
  • NFC提供什么样的带宽?(What Kind of Bandwidth does NFC Provide?)
  • 元素上的盒子阴影行为(box-shadow behaviour on elements)
  • Laravel检查是否存在记录(Laravel Checking If a Record Exists)
  • 设置base64图像的大小javascript - angularjs(set size of a base64 image javascript - angularjs)
  • 想学Linux 运维 深圳有哪个培训机构好一点
  • 为什么有时不需要在lambda中捕获一个常量变量?(Why is a const variable sometimes not required to be captured in a lambda?)
  • 在Framework 3.5中使用服务器标签<%=%>设置Visible属性(Set Visible property with server tag <%= %> in Framework 3.5)
  • AdoNetAppender中的log4net连接类型无效(log4net connection type invalid in AdoNetAppender)
  • 错误:发送后无法设置标题。(Error: Can't set headers after they are sent. authentication system)
  • 等待EC2实例重启(Wait for an EC2 instance to reboot)
  • 如何在红宝石中使用正则表达式?(How to do this in regex in ruby?)
  • 使用鼠标在OpenGL GLUT中绘制多边形(Draw a polygon in OpenGL GLUT with mouse)
  • 江民杀毒软件的KSysnon.sys模块是什么东西?
  • 处理器在传递到add_xpath()或add_value()时调用了什么顺序?(What order are processors called when passed into add_xpath() or add_value()?)
  • sp_updatestats是否导致SQL Server 2005中无法访问表?(Does sp_updatestats cause tables to be inaccessible in SQL Server 2005?)
  • 如何创建一个可以与持续运行的服务交互的CLI,类似于MySQL的shell?(How to create a CLI that can interact with a continuously running service, similar to MySQL's shell?)
  • AESGCM解密失败的MAC(AESGCM decryption failing with MAC)
  • SQL查询,其中字段不包含$ x(SQL Query Where Field DOES NOT Contain $x)
  • PerSession与PerCall(PerSession vs. PerCall)
  • C#:有两个构造函数的对象:如何限制哪些属性设置在一起?(C#: Object having two constructors: how to limit which properties are set together?)
  • 平衡一个精灵(Balancing a sprite)
  • n2cms Asp.net在“文件”菜单上给出错误(文件管理器)(n2cms Asp.net give error on Files menu (File Manager))
  • Zurb Foundation 4 - 嵌套网格对齐问题(Zurb Foundation 4 - Nested grid alignment issues)
  • 湖北京山哪里有修平板计算机的