fix: render nc01 external postgres bridge
This commit is contained in:
@@ -604,6 +604,25 @@
|
||||
"required": ["enabled", "serviceName", "endpointAddress", "port"],
|
||||
"properties": {
|
||||
"enabled": { "type": "boolean" },
|
||||
"serviceName": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"maxLength": 63,
|
||||
"pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"
|
||||
},
|
||||
"endpointAddress": { "type": "string", "minLength": 1 },
|
||||
"port": { "type": "integer", "minimum": 1, "maximum": 65535 },
|
||||
"nodes": {
|
||||
"type": "object",
|
||||
"additionalProperties": { "$ref": "#/$defs/externalPostgresNodeOverride" }
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"externalPostgresNodeOverride": {
|
||||
"type": "object",
|
||||
"required": ["serviceName", "endpointAddress", "port"],
|
||||
"properties": {
|
||||
"serviceName": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
|
||||
@@ -384,6 +384,11 @@ lanes:
|
||||
serviceName: jd01-pk01-platform-postgres
|
||||
endpointAddress: 82.156.23.220
|
||||
port: 5432
|
||||
nodes:
|
||||
NC01:
|
||||
serviceName: nc01-host-postgres
|
||||
endpointAddress: 10.42.0.1
|
||||
port: 5432
|
||||
runtimeStore:
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
|
||||
Reference in New Issue
Block a user