# Docker Registry Secret for pulling images from private registry # # This file is a TEMPLATE - the actual secret is managed by Gitea Actions workflow # and should NOT be committed with real credentials. # # To create this secret manually: # kubectl create secret docker-registry regcred \ # --docker-server=192.168.123.199:5000 \ # --docker-username=admin \ # --docker-password= \ # --namespace=lpt-dev # # Or use the workflow which reads from Gitea secrets: # - REGISTRY_USERNAME # - REGISTRY_PASSWORD apiVersion: v1 kind: Secret metadata: name: regcred namespace: lpt-dev type: kubernetes.io/dockerconfigjson data: # .dockerconfigjson: # This is generated by the workflow - DO NOT commit real values here .dockerconfigjson: ""