79667513

Date: 2025-06-16 11:34:22
Score: 1
Natty:
Report link

If you want an image to be available use command

kubectl -n some_namespace create configmap --from-file ./image.png logo-cm

which will create the similar .yaml

---
apiVersion: v1
kind: ConfigMap
metadata:
  name: logo-cm
binaryData:
  image.png: >- iv... <your image in base64 format>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Igor