diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index f793049..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index 18bd282..9722390 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ **/secret.yaml +**/.DS_Store diff --git a/deploy/.DS_Store b/deploy/.DS_Store deleted file mode 100644 index 4c4b775..0000000 Binary files a/deploy/.DS_Store and /dev/null differ diff --git a/deploy/rocket-chat/values.yaml b/deploy/rocket-chat/values.yaml new file mode 100644 index 0000000..a7025a6 --- /dev/null +++ b/deploy/rocket-chat/values.yaml @@ -0,0 +1,24 @@ +image: + pullPolicy: IfNotPresent + repository: registry.rocket.chat/rocketchat/rocket.chat + tag: 3.18.3 # Set the Rocket.Chat release + +mongodb: + enabled: true # For testing, deploy a single MongoDB pod; consider an external MongoDB cluster for production. + auth: + passwords: + - rocketchat + rootPassword: rocketchatroot + +microservices: + enabled: false # Set to false for a monolithic deployment +host: chat.panic.haus # Replace with your Rocket.Chat domain +ingress: + enabled: true + ingressClassName: nginx # Specify the installed ingress controller in the K8s cluster + annotations: + cert-manager.io/cluster-issuer: letsencrypt-prod # Replace with your ClusterIssuer name + tls: + - secretName: rocketchat-tls # Use a different name if preferred + hosts: + - chat.panic.haus # Replace with your Rocket.Chat domain