You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
302 B
11 lines
302 B
#键的值是经过base64编码的
|
|
#在Linux里运行命令“echo -n dbuser | base64”获得“dbuser”的编码
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: mysql-master-secret
|
|
namespace: epdc-mysql
|
|
labels:
|
|
secret: mysql-master-secret
|
|
data:
|
|
mysql-user-root-pwd: ZXBkY19rb25nY3VuQDE0MDU=
|
|
|