helm-chart-genes/charts/wordpress final-perso-host/values.schema.json

52 lines
1.5 KiB
JSON

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"ingress": {
"type": "object",
"form": true,
"title": "Ingress Details",
"properties": {
"enabled": {
"description": "Enable Ingress",
"type": "boolean",
"default": true,
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": "k8s.ingress"
}
},
"hostname": {
"type": "string",
"form": true,
"title": "Hostname",
"x-onyxia": {
"hidden": false,
"overwriteDefaultWith": "{{project.id}}-{{k8s.randomSubdomain}}-0.{{k8s.domain}}"
}
}
}
},
"wordpressUsername": {
"type": "string",
"description": "Login du compte wordpress",
"default": "wordpress"
},
"wordpressPassword": {
"type": "string",
"description": "Password",
"default": "Wordpress123!"
},
"wordpressEmail": {
"type": "string",
"description": "Admin email",
"default": ""
},
"wordpressBlogName": {
"type": "string",
"description": "Blog Name",
"default": "User's Blog!"
}
}
}