Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Existing dashboards #1723

Merged
merged 9 commits into from
Apr 14, 2023
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ resource "helm_release" "keycloak" {
version = "15.0.2"

values = concat([
# https://github.com/codecentric/helm-charts/blob/keycloak-15.0.2/charts/keycloak/values.yaml
file("${path.module}/values.yaml"),
jsonencode({
nodeSelector = {
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,20 @@ resource "keycloak_default_groups" "default" {
keycloak_group.groups[g].id
]
}

# needed for keycloak monitoring to function
resource "keycloak_realm_events" "realm_events" {
realm_id = keycloak_realm.main.id

events_enabled = true

admin_events_enabled = true
admin_events_details_enabled = true

# When omitted or left empty, keycloak will enable all event types
enabled_event_types = []

events_listeners = [
"jboss-logging", "metrics-listener",
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ module "jupyterhub" {
services = concat([
"dask-gateway"
],
(var.monitoring-enabled ? ["monitoring"] : []),
(var.prefect-enabled ? ["prefect"] : []),
(var.kbatch-enabled ? ["kbatch"] : [])
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ resource "kubernetes_service" "server" {
metadata {
name = "${var.name}-conda-store-server"
namespace = var.namespace
labels = {
app = "conda-store"
component = "conda-store-server"
}
}

spec {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# https://github.com/jupyterhub/zero-to-jupyterhub-k8s/blob/main/jupyterhub/values.yaml
# https://github.com/jupyterhub/zero-to-jupyterhub-k8s/blob/1.2.0/jupyterhub/values.yaml
hub:
db:
type: sqlite-pvc
Expand Down
Loading