为什么 kubernetes 作业的秘密输出不显示实际值?

Why does the output of the secret from the kubernetes job not show the actual value?

谁能告诉我为什么这个作业的输出不是文本?

Job.yaml

当它应该是用户

时,输出是��ǫ

秘密看起来像这样:Secret.yaml

因为秘密值在创建期间未经过 base64 编码。使用 stringData 作为 un-encoded 值:

...
stringData:
  username: user
  password: password