Files
deployment-portal-fe/deployment_manifest.json

69 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "deployment-portal-frontend",
"environment": "$ENVIRONMENT",
"cluster": "$CLUSTER",
"metadata": {
"repo": "navi-infra/deployment-portal-frontend",
"language": "Javascript",
"dataSensitivity": "Internal",
"logCriticality": "AccessLogs",
"disasterRecovery": "False"
},
"deployment": {
"instance": {
"count": 2,
"cpu": 0.25,
"memory": "300Mi"
},
"alerts": {
"http5xx": {
"thresholdPercent": 10
}
},
"namespace": "$NAMESPACE",
"exposedPorts": [],
"loadBalancers": [
{
"type": "$LB_TYPE",
"groupName": "shared-infra-alb",
"accessPolicies": [
$ACCESS_POLICIES
],
"endpoint": "$SERVICE_ENDPOINT"
}
],
"allowEgress": [],
"healthChecks": {
"readinessCheck": {
"type": "http",
"port": "serviceport",
"path": "/health",
"successThreshold": 1,
"initialDelaySeconds": 90,
"periodSeconds": 30,
"failureThreshold": 3,
"httpHeaders": []
},
"livenessCheck": {
"type": "http",
"port": "serviceport",
"path": "/health",
"successThreshold": 1,
"initialDelaySeconds": 90,
"periodSeconds": 30,
"failureThreshold": 3,
"httpHeaders": []
}
}
},
"environmentVariables": [
{
"name": "INFRA_VERTICAL",
"value": "$INFRA_VERTICAL"
}
],
"team": {
"name": "Cloud-Platform"
}
}