Update values.schema.json to reflect latest format

Signed-off-by: Andres Martinez Gotor <andres@bitnami.com>
This commit is contained in:
Andres Martinez Gotor
2019-11-05 13:34:38 +01:00
parent e835db9ba0
commit f7664df388
2 changed files with 17 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: apache
version: 7.2.2
version: 7.2.3
appVersion: 2.4.41
description: Chart for Apache HTTP Server
keywords:

View File

@@ -4,32 +4,39 @@
"properties": {
"ingress": {
"type": "object",
"form": "ingress",
"form": true,
"title": "Ingress Details",
"properties": {
"enabled": {
"type": "boolean",
"form": "enableIngress",
"enables": "ingress",
"form": true,
"title": "Use a custom hostname",
"description": "Enable the ingress resource that allows you to access the WordPress installation."
},
"certManager": {
"type": "boolean",
"form": "enableCertManager",
"form": true,
"title": "Enable TLS annotations via cert-manager",
"description": "Set this to true in order to add the corresponding annotations for cert-manager"
"description": "Set this to true in order to add the corresponding annotations for cert-manager",
"hidden": {
"condition": false,
"value": "ingress.enabled"
}
},
"hostname": {
"type": "string",
"form": "hostname",
"title": "Hostname"
"form": true,
"title": "Hostname",
"hidden": {
"condition": false,
"value": "ingress.enabled"
}
}
}
},
"replicaCount": {
"type": "integer",
"form": "replicaCount",
"form": true,
"title": "Number of Replicas"
},
"metrics": {
@@ -38,7 +45,7 @@
"enabled": {
"type": "boolean",
"title": "Configure metrics exporter",
"form": "enableMetrics"
"form": true
}
}
}