Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过以下链接https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/描述了如何添加秘密(加密)数据。
如何从 java 客户端获取该键值?
您可以使用 Kubernetes 的 REST API 的官方 Java 客户端并阅读本文档中定义的密钥。您将获得返回类型为V1Secret的结果。
V1Secret result = apiInstance.readNamespacedSecret(name, namespace, pretty, exact, export);
V1Secret result = apiInstance.readNamespacedSecret(name, namespace, pretty, exact, export)
该对象result具有data类型属性,Map<String, byte>可从中获取键值对。
result
data
Map<String, byte>