allow to change container ports, fix default frontend ports

Signed-off-by: Pascal Sthamer <10992664+P4sca1@users.noreply.github.com>
This commit is contained in:
Pascal Sthamer
2025-01-02 09:09:36 +01:00
parent 95949415f3
commit 2980fba8c7
13 changed files with 144 additions and 26 deletions
+55 -2
View File
@@ -178,6 +178,22 @@
"description": "Number of backend replicas to deploy",
"default": 1
},
"containerPorts": {
"type": "object",
"properties": {
"http": {
"type": "number",
"description": "backend HTTP container port",
"default": 5001
}
}
},
"extraContainerPorts": {
"type": "array",
"description": "Optionally specify extra list of additional ports for backend containers",
"default": [],
"items": {}
},
"livenessProbe": {
"type": "object",
"properties": {
@@ -840,6 +856,27 @@
"description": "Number of frontend replicas to deploy",
"default": 1
},
"containerPorts": {
"type": "object",
"properties": {
"http": {
"type": "number",
"description": "frontend HTTP container port",
"default": 80
},
"https": {
"type": "number",
"description": "frontend HTTPS container port",
"default": 443
}
}
},
"extraContainerPorts": {
"type": "array",
"description": "Optionally specify extra list of additional ports for frontend containers",
"default": [],
"items": {}
},
"livenessProbe": {
"type": "object",
"properties": {
@@ -976,7 +1013,7 @@
"enabled": {
"type": "boolean",
"description": "Enable frontend pods' Security Context",
"default": true
"default": false
},
"fsGroupChangePolicy": {
"type": "string",
@@ -1008,7 +1045,7 @@
"enabled": {
"type": "boolean",
"description": "Enabled frontend container' Security Context",
"default": true
"default": false
},
"runAsUser": {
"type": "number",
@@ -1437,6 +1474,22 @@
"description": "Number of orborus replicas to deploy",
"default": 1
},
"containerPorts": {
"type": "object",
"properties": {
"http": {
"type": "number",
"description": "orborus HTTP container port",
"default": 8080
}
}
},
"extraContainerPorts": {
"type": "array",
"description": "Optionally specify extra list of additional ports for orborus containers",
"default": [],
"items": {}
},
"livenessProbe": {
"type": "object",
"properties": {