Files
charts/bitnami/redmine/values.schema.json
Jose Antonio Carmona 0f1b1eff13 [bitnami/redmine] MAJOR - Redmine subchart bump, also apiVersion: v2 (#4159)
* Add bitnami/commons

Signed-off-by: joancafom <jcarmona@bitnami.com>

* Add labels and annotations standardizations

* Add standardizations

Signed-off-by: joancafom <jcarmona@bitnami.com>

* Bump Chart and update README

Signed-off-by: joancafom <jcarmona@bitnami.com>

* Add upgrade notes to README

* Add further standardizations

* Add bitnami/commons

Signed-off-by: joancafom <jcarmona@bitnami.com>

* Add labels and annotations standardizations

* Add standardizations

Signed-off-by: joancafom <jcarmona@bitnami.com>

* Bump Chart and update README

Signed-off-by: joancafom <jcarmona@bitnami.com>

* Add upgrade notes to README

* Add further standardizations

* Helm v3 and Dependencies update

* Helmv3 and dep update

* Update README.md

Following the same structure than other PRs

* Sort Chart and upgrade common

* Add component labels to selectors

* [bitnami/redmine] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-11-23 16:49:18 +01:00

185 lines
5.1 KiB
JSON

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"redmineUsername": {
"type": "string",
"title": "Username",
"form": true
},
"redminePassword": {
"type": "string",
"title": "Password",
"form": true,
"description": "Defaults to a random 10-character alphanumeric string if not set"
},
"redmineEmail": {
"type": "string",
"title": "Admin email",
"form": true
},
"persistence": {
"type": "object",
"title": "Persistence for Redmine replicas",
"form": true,
"properties": {
"enabled": {
"type": "boolean",
"form": true,
"title": "Enable persistence",
"description": "Enable persistence using Persistent Volume Claims"
},
"size": {
"type": "string",
"title": "Persistent Volume Size",
"form": true,
"render": "slider",
"sliderMin": 1,
"sliderMax": 100,
"sliderUnit": "Gi",
"hidden": {
"value": false,
"path": "persistence/enabled"
}
}
}
},
"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 Redmine installation."
},
"hostname": {
"type": "string",
"form": true,
"title": "Hostname",
"hidden": {
"value": false,
"path": "ingress/enabled"
}
},
"tls": {
"type": "boolean",
"form": true,
"title": "Enable TLS configuration",
"hidden": {
"value": false,
"path": "ingress/enabled"
}
},
"certManager": {
"type": "boolean",
"form": true,
"title": "Use cert-manager to auto-generate the TLS certificate",
"description": "Add the corresponding annotations for cert-manager to auto-generate the TLS certificate",
"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\""
}
}
},
"databaseType": {
"type": "string",
"form": true,
"enum": ["mariadb", "postgresql"],
"title": "Database Type",
"description": "Allowed values: \"mariadb\" and \"postgresql\""
},
"mariadb": {
"type": "object",
"title": "MariaDB Details",
"form": true,
"hidden": {
"value": "postgresql",
"path": "databaseType"
},
"properties": {
"enabled": {
"type": "boolean",
"title": "Use a new MariaDB database hosted in the cluster",
"form": true,
"description": "Whether to deploy a mariadb server to satisfy the applications database requirements. To use an external database switch this off and configure the external database details"
},
"primary": {
"type": "object",
"properties": {
"persistence": {
"type": "object",
"properties": {
"size": {
"type": "string",
"title": "Volume Size",
"form": true,
"hidden": {
"value": false,
"path": "mariadb/enabled"
},
"render": "slider",
"sliderMin": 1,
"sliderMax": 100,
"sliderUnit": "Gi"
}
}
}
}
}
}
},
"postgresql": {
"type": "object",
"title": "PostgreSQL Details",
"form": true,
"hidden": {
"value": "mariadb",
"pathe": "databaseType"
},
"properties": {
"enabled": {
"type": "boolean",
"title": "Use a new PostgreSQL database hosted in the cluster",
"form": true,
"description": "Whether to deploy a postgresql server to satisfy the applications database requirements. To use an external database switch this off and configure the external database details"
},
"persistence": {
"type": "object",
"properties": {
"size": {
"type": "string",
"title": "Volume Size",
"form": true,
"hidden": {
"value": false,
"path": "postgresql/enabled"
},
"render": "slider",
"sliderMin": 1,
"sliderMax": 100,
"sliderUnit": "Gi"
}
}
}
}
}
}
}