Files
charts/bitnami/kubeapps/values.schema.json
Hervé 360d07c59b [bitnami/kubeapps] Update the cert-manager annotations (#7434)
* Chart: update the cert-manager annotations

According to the documentation:
https://cert-manager.io/docs/usage/ingress/#optional-configuration,
the `kubernetes.io/tls-acme` annotations pertains to the kube-lego
project https://github.com/jetstack/kube-lego which is no longer maintained
and has been displaced by cert-manager.
As a result the cert-manager annotations should be used instead.

* Address PR comments

* Add default value to ingress.certManager

* Bump minor version
2021-09-16 15:33:21 +02:00

143 lines
3.8 KiB
JSON

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"frontend": {
"type": "object",
"title": "Frontend configuration",
"form": true,
"properties": {
"replicaCount": {
"type": "integer",
"title": "Number of replicas",
"form": true
}
}
},
"dashboard": {
"type": "object",
"title": "Dashboard configuration",
"form": true,
"properties": {
"replicaCount": {
"type": "integer",
"title": "Number of replicas",
"form": true
}
}
},
"assetsvc": {
"type": "object",
"title": "Assetsvc configuration",
"form": true,
"properties": {
"replicaCount": {
"type": "integer",
"title": "Number of replicas",
"form": true
}
}
},
"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 Kubeapps dashboard."
},
"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": "object",
"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"
},
"properties": {
"clusterIssuer": {
"type": "string",
"title": "Cert-manager cluster issuer",
"form": true
}
}
}
}
},
"authProxy": {
"type": "object",
"title": "OIDC Proxy configuration",
"properties": {
"enabled": {
"type": "boolean",
"form": true,
"title": "Enable OIDC proxy",
"description": "Use an OIDC provider in order to manage accounts, groups and roles with a single application"
},
"provider": {
"type": "string",
"form": true,
"title": "Identity Provider name",
"description": "See https://oauth2-proxy.github.io/oauth2-proxy/docs/configuration/overview#generating-a-cookie-secret to find available providers",
"hidden": {
"value": false,
"path": "authProxy/enabled"
}
},
"clientID": {
"type": "string",
"form": true,
"title": "Client ID:",
"description": "Client ID of the Identity Provider",
"hidden": {
"value": false,
"path": "authProxy/enabled"
}
},
"clientSecret": {
"type": "string",
"form": true,
"title": "Client Secret",
"description": "Secret used to validate the Client ID",
"hidden": {
"value": false,
"path": "authProxy/enabled"
}
},
"cookieSecret": {
"type": "string",
"form": true,
"title": "Cookie Secret",
"description": "Used by OAuth2 Proxy to encrypt any credentials",
"hidden": {
"value": false,
"path": "authProxy/enabled"
}
}
}
}
}
}