Skip to content
Snippets Groups Projects
Verified Commit 2162ca5d authored by Martin Weise's avatar Martin Weise
Browse files

Updated schema

parent 2d51086a
Branches
Tags
1 merge request!400Need assets path
......@@ -94,11 +94,9 @@ The command removes all the Kubernetes components associated with the chart and
| `authservice.enabled` | Enable the Auth Service. | `true` |
| `authservice.image.debug` | Set the logging level to `trace`. Otherwise, set to `info`. | `false` |
| `authservice.endpoint` | The hostname for the microservices. | `http://auth-service` |
| `authservice.production` | Start Keycloak with production profile. | `true` |
| `authservice.extraStartupArgs` | Extra arguments for the Keycloak container. | `--hostname-strict false --proxy-headers xforwarded` |
| `authservice.resourcesPreset` | The container resource presets | `small` |
| `authservice.jwt.pubkey` | The JWT public key from the `dbrepo-client`. | `MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqqnHQ2BWWW9vDNLRCcxD++xZg/16oqMo/c1l+lcFEjjAIJjJp/HqrPYU/U9GvquGE6PbVFtTzW1KcKawOW+FJNOA3CGo8Q1TFEfz43B8rZpKsFbJKvQGVv1Z4HaKPvLUm7iMm8Hv91cLduuoWx6Q3DPe2vg13GKKEZe7UFghF+0T9u8EKzA/XqQ0OiICmsmYPbwvf9N3bCKsB/Y10EYmZRb8IhCoV9mmO5TxgWgiuNeCTtNCv2ePYqL/U0WvyGFW0reasIK8eg3KrAUj8DpyOgPOVBn3lBGf+3KFSYi+0bwZbJZWqbC/Xlk20Go1YfeJPRIt7ImxD27R/lNjgDO/MwIDAQAB` |
| `authservice.tls.enabled` | Enable TLS/SSL communication. Required for HTTPS. | `true` |
| `authservice.tls.existingSecret` | The secret containing the `tls.crt`, `tls.key` and `ca.crt`. | `auth-service-secret` |
| `authservice.client.id` | The client id for the microservices. | `dbrepo-client` |
| `authservice.client.secret` | The client secret for the microservices. | `MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG` |
| `authservice.setupJob.resourcesPreset` | The container resource preset | `nano` |
......@@ -383,8 +381,9 @@ mqtt.prefetch = 10
### Dashboard Service
| Name | Description | Value |
| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ---------------- |
| -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -------------------------- |
| `dashboardservice.enabled` | Enable the Dashboard Service. | `true` |
| `dashboardservice.endpoint` | The endpoint for the microservices. | `http://dashboard-service` |
| `dashboardservice.podSecurityContext.enabled` | Enable pods' Security Context | `true` |
| `dashboardservice.podSecurityContext.fsGroupChangePolicy` | Set filesystem group change policy | `Always` |
| `dashboardservice.podSecurityContext.sysctls` | Set kernel settings using the sysctl interface | `[]` |
......@@ -409,7 +408,7 @@ mqtt.prefetch = 10
### Dashboard UI
| Name | Description | Value |
| ---------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |-----------------------|
| ---------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | --------------------- |
| `dashboardui.enabled` | Enable the Dashboard UI. | `true` |
| `dashboardui.metrics.enabled` | Enable the metrics sidecar. | `true` |
| `dashboardui.endpoint` | The endpoint for the microservices. | `http://dashboard-ui` |
......
No preview for this file type
......@@ -129,6 +129,9 @@
"extraEnvVarsCM": {
"type": "string"
},
"extraStartupArgs": {
"type": "string"
},
"extraVolumeMounts": {
"items": {
"properties": {
......@@ -227,9 +230,6 @@
},
"type": "object"
},
"production": {
"type": "boolean"
},
"replicaCount": {
"type": "integer"
},
......@@ -255,20 +255,6 @@
}
},
"type": "object"
},
"tls": {
"properties": {
"enabled": {
"type": "boolean"
},
"existingSecret": {
"type": "string"
},
"usePem": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
......@@ -507,6 +493,9 @@
"enabled": {
"type": "boolean"
},
"endpoint": {
"type": "string"
},
"image": {
"properties": {
"name": {
......@@ -632,6 +621,19 @@
}
},
"type": "object"
},
"service": {
"properties": {
"ports": {
"properties": {
"grafana": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
......
......@@ -85,6 +85,7 @@ authservice:
debug: false
## @param authservice.endpoint The hostname for the microservices.
endpoint: http://auth-service
## @param authservice.extraStartupArgs Extra arguments for the Keycloak container.
extraStartupArgs: --hostname-strict false --proxy-headers xforwarded
## @skip authservice.postgresql
postgresql:
......@@ -986,6 +987,7 @@ dashboardui:
extraEnvVarsSecret: dashboard-ui-secret
service:
ports:
## @skip dashboardui.service.ports.grafana
grafana: 80
datasources:
## @skip dashboardui.datasources.secretName
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment