mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-19 04:26:45 +00:00
fix: correct helm values schema for webservcie ports (#1928)
Signed-off-by: bakito <github@bakito.ch>
This commit is contained in:
@@ -39,7 +39,10 @@
|
||||
},
|
||||
"port": {
|
||||
"description": "Custom service port for the webhook service",
|
||||
"type": "null"
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"url": {
|
||||
"description": "The URL where the capsule webhook services are running (Overwrites cluster scoped service definition)",
|
||||
@@ -2176,7 +2179,10 @@
|
||||
},
|
||||
"port": {
|
||||
"description": "Custom service port for the webhook service",
|
||||
"type": "null"
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"url": {
|
||||
"description": "The URL where the capsule webhook services are running (Overwrites cluster scoped service definition)",
|
||||
|
||||
@@ -466,7 +466,7 @@ conversions:
|
||||
# -- Custom service namespace for the webhook service
|
||||
namespace: ""
|
||||
# -- Custom service port for the webhook service
|
||||
port:
|
||||
port: # @schema type:[integer, null]
|
||||
|
||||
|
||||
# Webhooks configurations
|
||||
@@ -495,7 +495,7 @@ webhooks:
|
||||
# -- Custom service namespace for the webhook service
|
||||
namespace: ""
|
||||
# -- Custom service port for the webhook service
|
||||
port:
|
||||
port: # @schema type:[integer, null]
|
||||
|
||||
# Admission Webhook Configuration
|
||||
hooks:
|
||||
|
||||
Reference in New Issue
Block a user