mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
1fc4142e1a
This commit fixes a recently discovered issue on Kubernetes #4496 It make necessary to avoid calling `chown` to config files during the bootstrap of the containers.
29 lines
616 B
JSON
29 lines
616 B
JSON
{
|
|
"server": {
|
|
"http_addr": ":4443"
|
|
},
|
|
"trust_service": {
|
|
"type": "remote",
|
|
"hostname": "notarysigner",
|
|
"port": "7899",
|
|
"tls_ca_file": "./notary-signer-ca.crt",
|
|
"key_algorithm": "ecdsa"
|
|
},
|
|
"logging": {
|
|
"level": "debug"
|
|
},
|
|
"storage": {
|
|
"backend": "mysql",
|
|
"db_url": "server@tcp(mysql:3306)/notaryserver?parseTime=True"
|
|
},
|
|
"auth": {
|
|
"type": "token",
|
|
"options": {
|
|
"realm": "$token_endpoint/service/token",
|
|
"service": "harbor-notary",
|
|
"issuer": "harbor-token-issuer",
|
|
"rootcertbundle": "/etc/notary/root.crt"
|
|
}
|
|
}
|
|
}
|