英文:
How to create config map and secrets using golang kubernetes API
问题
使用Go语言的Kubernetes API如何创建配置映射(ConfigMap)和密钥(Secrets)?
英文:
How to create config map and secrets using Go lang Kubernetes API
答案1
得分: 6
你需要配置你的Kubernetes客户端与你的Kubernetes集群,并创建ConfigMap/Secret结构并调用Kubernetes API。
以下是一个可以使用的代码示例:
cm := corev1.ConfigMap{
TypeMeta: metav1.TypeMeta{
Kind: "ConfigMap",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Name: "my-config-map",
Namespace: "my-namespace",
},
Data: <config-map-data>,
}
clientset.CoreV1().ConfigMaps("my-namespace").Create(&cm)
你可以在以下文档中找到更多信息:
英文:
You need to have your Kubernetes client configured with your Kubernetes cluster and then create ConfigMap/Secret struct and call Kubernetes API.
Here is a code example you can use:
cm := corev1.ConfigMap{
TypeMeta: metav1.TypeMeta{
Kind: "ConfigMap",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Name: "my-config-map",
Namespace: "my-namespace",
},
Data: <config-map-data>,
}
clientset.CoreV1().ConfigMaps("my-namespace").Create(&cm)
Here you can find the doc for:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论