mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-07-07 12:21:10 +08:00
18 lines
378 B
YAML
18 lines
378 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: docker-secret
|
|
namespace: default
|
|
type: kubernetes.io/dockerconfigjson
|
|
stringData:
|
|
.dockerconfigjson: |
|
|
{
|
|
"auths": {
|
|
"your.registry.com": {
|
|
"username": "username",
|
|
"password": "psw",
|
|
"email": "openim@example.com",
|
|
"auth": "dXNlcm5hbWU6cHN3"
|
|
}
|
|
}
|
|
} |