디렉토리 구조 및 각 서비스 추가

This commit is contained in:
dsk-minchulahn
2024-01-03 17:29:11 +09:00
parent 98de2a7627
commit d601d0f259
1632 changed files with 207616 additions and 1 deletions

View File

@@ -0,0 +1,62 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"replicaCount"
],
"properties": {
"replicaCount": {
"type": "integer",
"enum": [0, 1]
},
"jvmOpts": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) Please use SONAR_WEB_JAVAOPTS or sonar.web.javaOpts"
},
"jvmCeOpts": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) Please use SONAR_CE_JAVAOPTS or sonar.ce.javaOpts"
},
"livenessProbe": {
"type": "object",
"properties": {
"sonarWebContext": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use sonarWebContext at the value top level"
}
}
},
"startupProbe": {
"type": "object",
"properties": {
"sonarWebContext": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use sonarWebContext at the value top level"
}
}
},
"readinessProbe": {
"type": "object",
"properties": {
"sonarWebContext": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use sonarWebContext at the value top level"
}
}
},
"account": {
"type": "object",
"properties": {
"sonarWebContext": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use sonarWebContext at the value top level"
}
}
}
}
}