English 中文(简体)
我如何终止Kubernetes的名称空间?
原标题:How do I terminate a Kubernetes namespace?
最佳回答

您需要使用经认证的用户(或更经常地使用<代码>*)。

问题回答

您需要使用一个经认证的用户,如库布吉斯用户

cat /root/.kube/config |grep client-certificate-data | awk -F      {print $2}  |base64 -d > ./kubectl.crt
cat /root/.kube/config |grep client-key-data | awk -F      {print $2}  |base64 -d > ./kubectl.key
curl --cert ./kubectl.crt --key ./kubectl.key -k ...




相关问题
静态启动的探测阶段?

我真的想要是什么,我如何知道C++初始阶段究竟是谁?

Namespace convention for Objective-C

I d like to group classes so they must be referenced like this: Root.Web Root.Mail Root.Audio Each of the above classes corresponds to a file: Web.h Mail.h Audio.h The goal is to use the above "...

(Conventions) C# Class names

I m not too quite sure about what i should do about a grouped set of classes. My situation: I have 11 classes that relate only to the class Character.cs, but all of those classes (including ...

the compiler doesn t seem to accept Agent class

probably the answer is quite silly but I need a pair fresh of eyes to spot the problem, if you will. this is the excerpt from _tmain: Agent theAgent(void); int m = theAgent.loadSAG(); and this is ...

How to resolve Rails model namespace collision

The story so far: I have a rails app with a model named "Term". All is well until trying to install Cucumber. Upon running rake cucumber I get Term is not a class (TypeError) This happens because ...

XSLT Transform XML with Namespaces

I m trying to transform some XML into HTML using XSLT. Problem: I can t get it to work. Can someone tell me what I m doing wrong? XML: <ArrayOfBrokerage xmlns:i="http://www.w3.org/2001/...

WebForms and ASP.NET MVC co-existence

I am trying to make a WebForms project and ASP.NET MVC per this question. One of the things I ve done to make that happen is that I added a namespaces node to the WebForms web.config: <pages ...

热门标签