ocdp v1
This commit is contained in:
31
backend/config/bootstrap.example.json
Normal file
31
backend/config/bootstrap.example.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"enabled": true,
|
||||
"users": [
|
||||
{
|
||||
"username": "admin",
|
||||
"password": "change-me-in-production",
|
||||
"email": "admin@example.com"
|
||||
}
|
||||
],
|
||||
"registries": [
|
||||
{
|
||||
"name": "my-harbor",
|
||||
"url": "https://harbor.example.com",
|
||||
"description": "Harbor Registry",
|
||||
"username": "admin",
|
||||
"password": "change-me",
|
||||
"insecure": false
|
||||
}
|
||||
],
|
||||
"clusters": [
|
||||
{
|
||||
"name": "my-cluster",
|
||||
"host": "https://kubernetes.example.com:6443",
|
||||
"description": "Production Kubernetes Cluster",
|
||||
"caData": "LS0tLS1CRUdJTi...(base64-encoded-ca-cert)...",
|
||||
"certData": "LS0tLS1CRUdJTi...(base64-encoded-client-cert)...",
|
||||
"keyData": "LS0tLS1CRUdJTi...(base64-encoded-client-key)..."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user