Files
charts/bitnami/kubeapps/values.schema.json
kubeapps-bot c1a22c1bea [bitnami/kubeapps] Bump chart version to 7.5.6 (#7724)
* kubeapps: bump chart version to 7.5.5-dev0

* Remove dev-only changes

Signed-off-by: Antonio Gamez Diaz <agamez@vmware.com>

* Bump chart version

Signed-off-by: Antonio Gamez Diaz <agamez@vmware.com>

* Fix lint issues

Signed-off-by: Antonio Gamez Diaz <agamez@vmware.com>

Co-authored-by: Antonio Gamez Diaz <agamez@vmware.com>
2021-10-07 16:49:33 +02:00

126 lines
3.3 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
}
}
},
"kubeappsapis": {
"type": "object",
"title": "kubeappsapis 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"
}
}
}
},
"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"
}
}
}
}
}
}