Files
php-apache/helm/php-homepage/values.schema.json
T
feedc0de b116ce8b80
Publish PHP Apache image / Build, test and push (push) Failing after 21s
New approach with helm chart and add gd and opcache
2026-09-10 20:13:16 +02:00

36 lines
1.0 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": ["image", "persistence", "service", "ingress"],
"properties": {
"replicaCount": { "type": "integer", "minimum": 1 },
"fullnameOverride": { "type": "string" },
"image": {
"type": "object",
"required": ["repository", "tag", "pullPolicy"],
"properties": {
"repository": { "type": "string", "minLength": 1 },
"tag": { "type": "string" },
"pullPolicy": { "enum": ["Always", "IfNotPresent", "Never"] }
}
},
"persistence": {
"type": "object",
"required": ["enabled", "existingClaim", "mountPath"],
"properties": {
"enabled": { "type": "boolean" },
"existingClaim": { "type": "string" },
"mountPath": { "type": "string", "minLength": 1 },
"retain": { "type": "boolean" }
}
},
"ingress": {
"type": "object",
"required": ["enabled"],
"properties": {
"enabled": { "type": "boolean" }
}
}
}
}