From 20a14a90a6983f59b7cefb14bac55009e6155486 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 19 Jan 2024 16:49:59 -0600 Subject: [PATCH] add osie example deployment Signed-off-by: Kevin Carter --- helm-configs/osie/osie-helm-overrides.yaml | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 helm-configs/osie/osie-helm-overrides.yaml diff --git a/helm-configs/osie/osie-helm-overrides.yaml b/helm-configs/osie/osie-helm-overrides.yaml new file mode 100644 index 000000000..86bd0125d --- /dev/null +++ b/helm-configs/osie/osie-helm-overrides.yaml @@ -0,0 +1,36 @@ +global: + ingress: + enabled: true + hostname: "cloud.example.com" + ingressClassName: "nginx" + annotations: + cert-manager.io/cluster-issuer: selfsigned-issuer + # Required by Keycloak when using Nginx ingress + nginx.ingress.kubernetes.io/proxy-buffer-size: "128k" + tls: true +keycloak: + replicaCount: 3 + postgresql: + architecture: replication + ingress: + hostname: auth.example.com +smtp: + password: "password" # smtp password + user: "smptuser" # smtp user + starttls: true + auth: true + port: 587 + host: "smpt.example.com" # smtp server + from: support@rackspace.com + fromDisplayName: Rackspace OpenStack Flex +ui: + replicaCount: 3 +admin: + replicaCount: 3 +api: + replicaCount: 3 +mongodb: + architecture: replicaset + replicaCount: 3 +redis: + architecture: replication