Files
charts/bitnami/apache/values.schema.json
Miguel Ángel Cabrera Miñagorri aaa314fd3a [bitnami/*] Revert changes in values.schemas.json (#7699)
* Revert changes on Apache values.schema.json

* Delete Tomcat values.schema.json

* Bump versions

* Checkout files

* Remove certManager entry from apache values.schema.json
2021-10-05 10:30:15 +02:00

57 lines
1.3 KiB
JSON

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"ingress": {
"type": "object",
"form": true,
"title": "Ingress Configuration",
"properties": {
"enabled": {
"type": "boolean",
"form": true,
"title": "Use a custom hostname",
"description": "Enable the ingress resource that allows you to access the Apache installation."
},
"hostname": {
"type": "string",
"form": true,
"title": "Hostname",
"hidden": {
"value": false,
"path": "ingress/enabled"
}
}
}
},
"service": {
"type": "object",
"form": true,
"title": "Service Configuration",
"properties": {
"type": {
"type": "string",
"form": true,
"title": "Service Type",
"description": "Allowed values: \"ClusterIP\", \"NodePort\" and \"LoadBalancer\""
}
}
},
"replicaCount": {
"type": "integer",
"form": true,
"title": "Number of Replicas"
},
"metrics": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"title": "Configure metrics exporter",
"form": true
}
}
}
}
}