kubernetes-client/python

Unclear Usage of V1ConfigMap

開放

#2,263 建立於 2024年8月13日

 (2 則留言) (0 個反應) (0 位負責人)Python (3,323 個分叉)batch import
help wantedkind/support

倉庫指標

星標
 (6,225 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

Link to the issue (please include a link to the specific documentation or example):

image

I'm looking for a way to practically "convert" into kubernetes-client code a ConfigMap yaml file and provide it to a V1PodSpec which feeds into V1Pod; However, I've haven't found a clear cut way to execute that, for the reason of unclear documentation and many objects of V1ConfigMapsEtc that are provided in the picture.

If someone can shed some light about how I can perform the following, or point me to some existing example.

An example config map yaml here

apiVersion: v1
kind: ConfigMap
metadata:
  name: game-demo
data:
  # property-like keys; each key maps to a simple value
  player_initial_lives: "3"
  ui_properties_file_name: "user-interface.properties"

  # file-like keys
  game.properties: |
    enemy.types=aliens,monsters
    player.maximum-lives=5    
  user-interface.properties: |
    color.good=purple
    color.bad=yellow
    allow.textmode=true    

貢獻者指南