Files
charts/bitnami/kubeapps/values.schema.json
Dimitri Laloue 4bccf26da8 [bitnami/kubeapps] Add Cookie refresh for default authProxy (#6465)
* added auth proxy cookie-refresh parameter with default value

* fixed unit

* added sample for adding cookie-refresh as an override

* switched to using values fields for scope and cookie refresh, to avoid duplicated options

* Add autogenerated params to the readme

* Replace the old oauth2proxy url by the new one

* Update bitnami/kubeapps/Chart.yaml

Co-authored-by: Miguel Ángel Cabrera Miñagorri <devgorri@gmail.com>

Co-authored-by: Dimitri Laloue <dlaloue@dlaloue-a01.vmware.com>
Co-authored-by: Antonio Gamez Diaz <agamez@vmware.com>
Co-authored-by: Antonio Gámez <antgamdia@gmail.com>
Co-authored-by: Miguel Ángel Cabrera Miñagorri <devgorri@gmail.com>
2021-06-02 11:57:07 +02:00

136 lines
3.6 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": "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"
}
}
}
},
"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"
}
}
}
}
}
}