KubeZero/charts/kubezero-istio-gateway/charts/gateway/values.schema.json

302 lines
6.7 KiB
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"additionalProperties": false,
2024-04-03 11:49:07 +00:00
"$defs": {
"values": {
"type": "object",
"properties": {
2024-04-03 11:49:07 +00:00
"global": {
"type": "object"
},
2024-04-03 11:49:07 +00:00
"affinity": {
"type": "object"
},
2024-04-03 11:49:07 +00:00
"securityContext": {
"type": [
"object",
"null"
]
},
2024-04-03 11:49:07 +00:00
"containerSecurityContext": {
"type": [
"object",
"null"
]
},
"kind": {
"type": "string",
"enum": [
"Deployment",
"DaemonSet"
]
},
"annotations": {
"additionalProperties": {
"type": [
"string",
"integer"
]
},
"type": "object"
},
"autoscaling": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"maxReplicas": {
"type": "integer"
},
"minReplicas": {
"type": "integer"
},
"targetCPUUtilizationPercentage": {
"type": "integer"
}
}
},
"env": {
"type": "object"
},
2024-04-03 11:49:07 +00:00
"labels": {
"type": "object"
},
"name": {
"type": "string"
},
2024-04-03 11:49:07 +00:00
"nodeSelector": {
"type": "object"
},
"podAnnotations": {
"type": "object",
"properties": {
"inject.istio.io/templates": {
"type": "string"
},
"prometheus.io/path": {
"type": "string"
},
"prometheus.io/port": {
"type": "string"
},
"prometheus.io/scrape": {
"type": "string"
}
}
},
"replicaCount": {
"type": [
"integer",
"null"
]
},
"resources": {
"type": "object",
"properties": {
"limits": {
"type": "object",
"properties": {
"cpu": {
"type": "string"
},
"memory": {
"type": "string"
}
}
},
"requests": {
"type": "object",
"properties": {
"cpu": {
"type": "string"
},
"memory": {
"type": "string"
}
}
}
}
},
"revision": {
"type": "string"
},
2024-04-03 11:49:07 +00:00
"compatibilityVersion": {
"type": "string"
2024-04-03 11:49:07 +00:00
},
"runAsRoot": {
"type": "boolean"
},
"unprivilegedPort": {
"type": [
"string",
"boolean"
],
"enum": [
true,
false,
"auto"
]
},
"service": {
"type": "object",
"properties": {
2024-04-03 11:49:07 +00:00
"annotations": {
"type": "object"
},
"externalTrafficPolicy": {
"type": "string"
},
2024-04-03 11:49:07 +00:00
"loadBalancerIP": {
"type": "string"
},
"loadBalancerSourceRanges": {
"type": "array"
},
"ipFamilies": {
"items": {
"type": "string",
"enum": [
"IPv4",
"IPv6"
]
}
},
"ipFamilyPolicy": {
"type": "string",
"enum": [
"",
"SingleStack",
"PreferDualStack",
"RequireDualStack"
]
},
"ports": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"protocol": {
"type": "string"
},
"targetPort": {
"type": "integer"
}
}
}
},
"type": {
"type": "string"
}
}
},
2024-04-03 11:49:07 +00:00
"serviceAccount": {
"type": "object",
"properties": {
2024-04-03 11:49:07 +00:00
"annotations": {
"type": "object"
},
2024-04-03 11:49:07 +00:00
"name": {
"type": "string"
2024-04-03 11:49:07 +00:00
},
"create": {
"type": "boolean"
}
}
},
2024-04-03 11:49:07 +00:00
"rbac": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
}
}
},
2024-04-03 11:49:07 +00:00
"tolerations": {
"type": "array"
},
2024-04-03 11:49:07 +00:00
"topologySpreadConstraints": {
"type": "array"
},
2024-04-03 11:49:07 +00:00
"networkGateway": {
"type": "string"
},
2024-04-03 11:49:07 +00:00
"imagePullPolicy": {
"type": "string",
2024-04-03 11:49:07 +00:00
"enum": [
"",
"Always",
"IfNotPresent",
"Never"
]
},
2024-04-03 11:49:07 +00:00
"imagePullSecrets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}
},
2024-04-03 11:49:07 +00:00
"podDisruptionBudget": {
"type": "object",
"properties": {
"minAvailable": {
"type": [
"integer",
"string"
]
},
"maxUnavailable": {
"type": [
"integer",
"string"
]
},
"unhealthyPodEvictionPolicy": {
"type": "string",
"enum": [
"",
"IfHealthyBudget",
"AlwaysAllow"
]
}
}
},
2024-04-03 11:49:07 +00:00
"terminationGracePeriodSeconds": {
"type": "number"
},
2024-04-03 11:49:07 +00:00
"volumes": {
"type": "array",
"items": {
"type": "object"
}
2023-08-22 12:48:33 +00:00
},
2024-04-03 11:49:07 +00:00
"volumeMounts": {
"type": "array",
"items": {
"type": "object"
}
2023-08-22 12:48:33 +00:00
},
2024-04-03 11:49:07 +00:00
"priorityClassName": {
"type": "string"
2023-08-22 12:48:33 +00:00
}
}
}
2024-04-03 11:49:07 +00:00
},
"defaults": {
"$ref": "#/$defs/values"
},
"$ref": "#/$defs/values"
}