├── .envrc ├── .git-hooks └── commit-msg ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-repport.md │ ├── config.yml │ ├── feature-request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE │ └── config.yml ├── pull_request_template.md └── workflows │ ├── changelog-verify.yml │ ├── ci.yml │ ├── deploy-wiab.yml │ ├── lint.yml │ └── offline.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── ansible ├── .gitignore ├── Makefile ├── README.md ├── admin_users.yml ├── ansible.cfg ├── backup_rabbitmq.yml ├── bootstrap.yml ├── cassandra-verify-ntp.yml ├── cassandra.yml ├── db-operations │ ├── README.md │ ├── cassandra_alter_keyspace_replication.yml │ ├── cassandra_cleanup.yml │ ├── cassandra_healthy.yml │ ├── cassandra_post_upgrade.yml │ ├── cassandra_pre_upgrade.yml │ ├── cassandra_restart.yml │ ├── cassandra_rolling_repair.yml │ ├── elasticsearch_joined.yml │ ├── elasticsearch_restart.yml │ ├── elasticsearch_stop.yml │ └── tasks │ │ ├── cassandra_cluster_healthy.yml │ │ ├── cassandra_down.yml │ │ ├── cassandra_manual_repair.yml │ │ ├── cassandra_remove_backup.yml │ │ ├── cassandra_remove_cron.yml │ │ ├── cassandra_remove_repair_and_daily_backup_cron.yml │ │ ├── cassandra_up.yml │ │ ├── cassandra_wait_ongoing_repair.yml │ │ ├── elasticsearch_cluster_healthy.yml │ │ ├── elasticsearch_down.yml │ │ ├── elasticsearch_shard_allocation.yml │ │ └── elasticsearch_up.yml ├── elasticsearch.yml ├── files │ ├── hetzner_server_libvirt_default_net.xml │ ├── hetzner_server_nftables.conf.j2 │ ├── hetzner_server_sshd_config │ ├── registry │ │ ├── .gitignore │ │ ├── images.sh │ │ ├── list_of_docker_images.txt │ │ ├── mk-certs │ │ ├── mk-sub-certificate │ │ ├── openssl.cnf │ │ ├── registry-run.sh │ │ └── upload_image.sh │ └── serve-assets.service ├── get-logs.yml ├── helm_external.yml ├── hetzner-single-deploy.yml ├── host_vars │ └── localhost │ │ └── python.yml ├── inventory │ ├── demo │ │ └── host.yml │ ├── offline │ │ ├── 99-static │ │ └── group_vars │ │ │ ├── all │ │ │ └── offline.yml │ │ │ ├── demo │ │ │ └── offline.yml │ │ │ └── postgresql │ │ │ └── postgresql.yml │ └── prod │ │ └── hosts.example.ini ├── iptables.yml ├── kube-minio-static-files.yml ├── kubernetes-fetch-kubeconfig.yml ├── kubernetes-renew-certs.yml ├── kubernetes.yml ├── kubernetes_logging.yml ├── logging.yml ├── minio.yml ├── ntp.yml ├── postgresql-deploy.yml ├── postgresql-playbooks │ ├── clean_existing_setup.yml │ ├── postgresql-deploy-primary.yml │ ├── postgresql-deploy-replica.yml │ ├── postgresql-install.yml │ ├── postgresql-monitoring.yml │ ├── postgresql-secrets.yml │ ├── postgresql-verify-HA.yml │ └── postgresql-wire-setup.yml ├── provision-sft.yml ├── rabbitmq.yml ├── registry.yml ├── roles │ ├── etcd-helpers │ │ ├── defaults │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── etcd-health.sh.j2 │ │ │ └── etcdctl3.sh.j2 │ ├── minio-static-files │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── android.json │ │ │ └── ios.json │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── deeplink.html.j2 │ │ │ └── deeplink.json.j2 │ ├── rabbitmq-cluster │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── cluster.yml │ │ │ ├── config.yml │ │ │ ├── configure_dns.yml │ │ │ ├── create_users.yml │ │ │ ├── enable_ha_queues.yml │ │ │ ├── erlang_cookie.yml │ │ │ ├── hosts.yml │ │ │ ├── install.yml │ │ │ ├── join_cluster.yml │ │ │ ├── main.yml │ │ │ ├── service.yaml │ │ │ └── tls.yml │ │ └── templates │ │ │ ├── erlang.cookie.j2 │ │ │ └── etc │ │ │ ├── default │ │ │ └── rabbitmq-server.j2 │ │ │ └── rabbitmq │ │ │ └── rabbitmq.config.j2 │ └── systemd-coredump │ │ ├── defaults │ │ └── main.yml │ │ └── tasks │ │ └── main.yml ├── seed-offline-containerd.yml ├── seed-offline-docker.yml ├── setup-offline-sources.yml ├── sync_time.yml ├── tasks │ └── helm_external.yml ├── templates │ ├── elasticsearch.conf.j2 │ ├── helm_external.yaml.j2 │ ├── ntp.conf.j2 │ ├── postgresql │ │ ├── detect-rogue-primary.service.j2 │ │ ├── detect-rogue-primary.timer.j2 │ │ ├── detect_rogue_primary.sh.j2 │ │ ├── failover_validation.sh.j2 │ │ ├── pg_hba.conf.j2 │ │ ├── pgpass.j2 │ │ ├── postgresql.conf.j2 │ │ ├── repmgr.conf.j2 │ │ ├── repmgrd_service.j2 │ │ └── simple_fence.sh.j2 │ └── qradar.conf.j2 ├── tinc.yml └── wiab-demo │ ├── clean_cluster.yml │ ├── deploy_wiab.yml │ ├── download_artifact.yml │ ├── hairpin_networking.yml │ ├── helm_install.yml │ ├── install_pkgs.yml │ ├── iptables_rules.yml │ ├── minikube_cluster.yml │ ├── setup_ssh.yml │ ├── verify_dns.yml │ ├── verify_wire_ip.yml │ ├── wire_secrets.yml │ └── wire_values.yml ├── bin ├── accept-invitation.sh ├── autodeploy.sh ├── bootstrap │ ├── README.md │ ├── init.sh │ └── inside.sh ├── debug_logs.sh ├── demo-setup.sh ├── deployment-info.sh ├── fix_default_router.sh ├── generate-image-list.sh ├── grafana-vm.sh ├── information-gathering.sh ├── install-grafana.sh ├── logging.sh ├── offline-cluster.sh ├── offline-deploy.sh ├── offline-env.sh ├── offline-helm.sh ├── offline-secrets.sh ├── offline-vm-setup.sh ├── prod-init.sh ├── prod-setup.sh ├── secrets.sh ├── shellcheck.sh ├── sync-k8s-secret-to-wire-secrets.sh ├── test-aws-s3-auth-v4.sh └── wiab-demo │ ├── offline-env.sh │ └── offline_deploy_k8s.sh ├── changelog.d ├── 0-release-notes │ ├── .title │ └── add-iam-user-for-cargohold ├── 1-debian-builds │ └── .title ├── 2-wire-builds │ ├── .title │ ├── configure-pg-values-for-brig │ ├── demo-values-changes │ ├── fix-build-tasks │ ├── optimize-offline-env │ ├── reaper-kubectl-image │ └── unsupported-grafana-dashboards ├── 3-deploy-builds │ ├── .title │ ├── cd-demo-wiab │ ├── cert-manager │ ├── changes-in-cd │ ├── demo-wiab-ansible-fixes │ ├── fix-chart-patching-broken-pipe │ ├── fix-demo-inventory │ ├── move-repmgr-secret-to-k8s │ ├── optimize-default-build-deploy-process │ ├── pg_ha_cluster │ ├── rabbitmq-external-example-file │ ├── standardize-yq-version │ ├── update-wiab │ ├── wpb-17218 │ └── wpb-18722-hardcoded-pass ├── 4-docs │ ├── .title │ ├── dkim-docs │ ├── enable-changelog │ └── fix-private-ca-docs ├── 5-bug-fixes │ ├── .title │ ├── fix-changelog-for-cotrun │ ├── fix-changelog-for-zebot │ ├── redis-ephemeral │ └── remove-migrate-job ├── mk-changelog.sh └── mk-cleanup.sh ├── dashboards ├── api_upload │ ├── CPU_and_Memory.json │ ├── Calling__TURN__coturn.json │ ├── Kubernetes__System__API_Server.json │ ├── Kubernetes__System__CoreDNS.json │ ├── Kubernetes__Views__Global.json │ ├── Kubernetes__Views__Namespaces.json │ ├── Kubernetes__Views__Nodes.json │ ├── Kubernetes__Views__Pods.json │ ├── NGINX_Ingress_controller.json │ ├── Node_Exporter_Full.json │ ├── Prometheus.json │ ├── SFT.json │ └── Wire_Services.json ├── grafana_sync.sh └── manual_upload │ ├── coturn.json │ ├── cpu_and_memory.json │ ├── dashboard_full.json │ ├── k8s _ system _ apiserver.json │ ├── k8s_global_view.json │ ├── k8s_namespace_view.json │ ├── k8s_node_view.json │ ├── k8s_pod_view.json │ ├── k8s_system_coredns.json │ ├── nginx_ingrerss_controller.json │ ├── node_exporter_full.json │ ├── prometheus.json │ ├── sft.json │ └── wire_service.json ├── default.nix ├── example-values ├── external-dns │ └── demo-values.example.yaml ├── metallb │ └── demo-values.example.yaml ├── outlook-addin │ └── prod-values.example.yaml └── wire-server-metrics │ └── demo-values.example.yaml ├── examples ├── control-planes-only-k8s │ ├── README.md │ └── terraform.tfvars ├── multi-instance-sft │ ├── README.md │ └── terraform.tfvars ├── multi-node-k8s-with-lb-and-dns │ ├── README.md │ ├── backend.tfvars │ ├── helm_vars │ │ ├── demo-smtp │ │ │ └── values.yaml │ │ ├── nginx-ingress-services │ │ │ └── values.yaml │ │ └── wire-server │ │ │ └── values.yaml │ ├── helmfile.yaml │ ├── inventory │ │ └── inventory.yml │ └── terraform.tfvars └── team-provisioning-qr-codes │ ├── README.md │ └── generate-user-pdf.sh ├── helm ├── Makefile └── README.md ├── nix ├── docker-alpine.nix ├── overlay.nix ├── pkgs │ ├── helm-mapkubeapis.nix │ ├── kubernetes-tools.nix │ └── wire-binaries.nix ├── scripts │ ├── create-build-entry.sh │ ├── create-container-dump.sh │ ├── create-offline-artifact.sh │ ├── generate-gpg1-key.sh │ ├── list-helm-containers.sh │ └── mirror-apt-jammy.sh ├── sources.json └── sources.nix ├── offline ├── cd.sh ├── cd_demo.sh ├── coturn.md ├── default-build │ └── build.sh ├── demo-build │ ├── build.sh │ └── post_chart_process_1.sh ├── demo-wiab.md ├── docs_ubuntu_22.04.md ├── federation_preparation.md ├── instrument_monitoring.md ├── k8ssandra_setup.md ├── ldap-scim-bridge.md ├── local_persistent_storage_k8s.md ├── min-build │ └── build.sh ├── postgresql-cluster.md ├── pull_helm_charts_flow.md ├── rabbitmq_setup.md ├── single_hetzner_machine_installation.md ├── smtp.md ├── stackIT-wiab.md ├── tasks │ ├── build_adminhost_containers.sh │ ├── build_linux_pkgs.sh │ ├── patch-chart-images.sh │ ├── post_chart_process_0.sh │ ├── pre_chart_process_0.sh │ ├── pre_clean_values_0.sh │ ├── proc_pull_charts.sh │ ├── proc_pull_ext_charts.sh │ ├── proc_system_containers.sh │ ├── proc_wire_binaries.sh │ └── process_charts.sh └── upgrades │ ├── ubuntu_18_to_ubuntu_22_migration.md │ ├── upgrading-SFT_ONLY.md │ └── upgrading.md ├── terraform ├── .gitignore ├── README.md ├── environment │ ├── Makefile │ ├── aws.tf │ ├── hcloud.tf │ ├── hcloud.vars.tf │ ├── inventory.tf │ ├── kubernetes.cluster.tf │ ├── kubernetes.cluster.vars.tf │ ├── kubernetes.dns.tf │ ├── kubernetes.dns.vars.tf │ ├── kubernetes.inventory.tf │ ├── main.vars.tf │ ├── sft.inventory.tf │ ├── sft.tf │ ├── sft.vars.tf │ └── terraform.tf ├── examples │ ├── .gitignore │ ├── README.md │ ├── create-infrastructure.tf │ ├── inventory.tpl │ ├── wiab-demo-hetzner │ │ ├── .envrc │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── versions.tf │ └── wire-server-deploy-offline-hetzner │ │ ├── .envrc │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_nodes.yml │ │ └── versions.tf └── modules │ ├── README.md │ ├── aws-ami-ubuntu-search │ ├── README.md │ ├── main.tf │ └── outputs.tf │ ├── aws-brig-prekey-lock-event-queue-email-sending │ ├── README.md │ ├── data.tf │ ├── locals.mailing.tf │ ├── main.tf │ ├── outputs.mailing.tf │ ├── outputs.tf │ ├── resources.dns.mailing.tf │ ├── resources.dynamodb.tf │ ├── resources.iam.mailing.tf │ ├── resources.iam.tf │ ├── resources.ses.mailing.tf │ ├── resources.sns.mailling.tf │ ├── resources.sqs.mailing.tf │ ├── resources.sqs.tf │ ├── variables.mailing.tf │ └── variables.tf │ ├── aws-cargohold-asset-storage │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── resources.iam.tf │ ├── resources.s3.tf │ ├── resources.security_groups.tf │ └── variables.tf │ ├── aws-dns-records │ ├── README.md │ ├── data.tf │ ├── locals.tf │ ├── main.tf │ ├── outputs.tf │ ├── resources.route53.tf │ └── variables.tf │ ├── aws-network-load-balancer │ ├── README.md │ ├── data.tf │ ├── main.tf │ ├── outputs.tf │ ├── resources.lb.tf │ └── variables.tf │ ├── aws-terraform-state-share │ ├── README.md │ ├── main.tf │ ├── resources.tf │ └── variables.tf │ ├── aws-vpc-security-groups │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf │ ├── aws-vpc │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ └── variables.tf │ ├── hetzner-kubernetes │ ├── load-balancer.locals.tf │ ├── load-balancer.resources.tf │ ├── load-balancer.variables.tf │ ├── locals.tf │ ├── machines.outputs.tf │ ├── machines.resources.tf │ ├── machines.variables.tf │ ├── network.resources.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf │ └── sft │ ├── dns.tf │ ├── outputs.tf │ ├── server.tf │ ├── srv-announcer-iam.tf │ ├── variables.tf │ └── versions.tf ├── unsupported ├── README.md └── grafana │ ├── elasticsearch.json │ ├── grafana_dasboard_cells_apps.json │ ├── grafana_dasboard_cells_logs.json │ ├── grafana_dasboard_cells_pods.json │ ├── grafana_dashboard_calling.json │ ├── grafana_dashboard_flake_news_failures.json │ ├── grafana_dashboard_flake_news_overview.json │ ├── grafana_dashboard_ingress.json │ ├── grafana_dashboard_sft.json │ ├── grafana_dashboard_tls_cert_monitor.json │ ├── grafana_dashboard_trivy.json │ ├── grafana_dashboard_wire_compute.json │ ├── grafana_dashboard_wire_speed.json │ ├── grafana_dashboards_general_kube_state_metrics_v2.json │ ├── grafana_dashboards_general_message_stats.json │ ├── grafana_dashboards_general_nginz_logs.json │ ├── grafana_dashboards_general_node_exporter_full.json │ ├── grafana_dashboards_general_oom_kills.json │ ├── grafana_dashboards_general_wire_services.json │ ├── grafana_dashboards_observability_traffic.json │ ├── k8s-cpu-and-memory-dashboard.json │ └── rabbitmq_overview-10991_rev15-plus-disks.json ├── utils ├── download_dashboards.sh ├── generate_graph.pl ├── rtpdelay_graph.py ├── rtpstreams_graph.py └── rtpstreams_summary.py └── values ├── account-pages ├── demo-values.example.yaml └── prod-values.example.yaml ├── aws-ingress └── demo-values.example.yaml ├── cassandra-external └── prod-values.example.yaml ├── cert-manager ├── demo-values.example.yaml └── prod-values.example.yaml ├── coturn ├── demo-secrets.example.yaml ├── demo-values.example.yaml ├── prod-secrets.example.yaml └── prod-values.example.yaml ├── databases-ephemeral ├── demo-values.example.yaml └── prod-values.example.yaml ├── elasticsearch-external └── prod-values.example.yaml ├── fake-aws ├── demo-secrets.example.yaml ├── demo-values.example.yaml └── prod-values.example.yaml ├── fluent-bit └── prod-values.example.yaml ├── ingress-nginx-controller ├── demo-values.example.yaml ├── hetzner-ci.example.yaml └── prod-values.example.yaml ├── k8ssandra-operator └── prod-values.example.yaml ├── k8ssandra-test-cluster └── prod-values.example.yaml ├── keycloakx └── prod-values.example.yaml ├── kube-prometheus-stack ├── demo-secrets.example.yaml ├── demo-values.example.yaml └── prod-secrets.example.yaml ├── ldap-scim-bridge └── values-prod.example.yaml ├── minio-external └── prod-values.example.yaml ├── nginx-ingress-services ├── demo-secrets.example.yaml ├── demo-values.example.yaml ├── prod-secrets.example.yaml └── prod-values.example.yaml ├── postgresql-external ├── demo-values.example.yaml └── prod-values.example.yaml ├── postgresql ├── demo-secrets.example.yaml └── demo-values.example.yaml ├── rabbitmq-external └── prod-values.example.yaml ├── rabbitmq ├── demo-secrets.example.yaml ├── demo-values.example.yaml ├── prod-secrets.example.yaml └── prod-values.example.yaml ├── reaper ├── demo-values.example.yaml └── prod-values.example.yaml ├── redis-ephemeral └── prod-values.example.yaml ├── restund └── prod-values.example.yaml ├── sftd ├── demo-values.example.yaml └── prod-values.example.yaml ├── smallstep-accomp ├── demo-values.example.yaml └── prod-values.example.yaml ├── smtp ├── demo-values.example.yaml └── prod-values.example.yaml ├── step-certificates ├── demo-values.example.yaml └── prod-values.example.yaml ├── team-settings ├── demo-secrets.example.yaml ├── demo-values.example.yaml ├── prod-secrets.example.yaml └── prod-values.example.yaml ├── webapp ├── demo-values.example.yaml └── prod-values.example.yaml ├── wire-server ├── demo-secrets.example.yaml ├── demo-values.example.yaml ├── prod-secrets.example.yaml └── prod-values.example.yaml └── wire-utility ├── demo-values.example.yaml └── prod-values.example.yaml /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.envrc -------------------------------------------------------------------------------- /.git-hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.git-hooks/commit-msg -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-repport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/ISSUE_TEMPLATE/bug-repport.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/changelog-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/workflows/changelog-verify.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-wiab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/workflows/deploy-wiab.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/offline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.github/workflows/offline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/README.md -------------------------------------------------------------------------------- /ansible/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/.gitignore -------------------------------------------------------------------------------- /ansible/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/Makefile -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/README.md -------------------------------------------------------------------------------- /ansible/admin_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/admin_users.yml -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/ansible.cfg -------------------------------------------------------------------------------- /ansible/backup_rabbitmq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/backup_rabbitmq.yml -------------------------------------------------------------------------------- /ansible/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/bootstrap.yml -------------------------------------------------------------------------------- /ansible/cassandra-verify-ntp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/cassandra-verify-ntp.yml -------------------------------------------------------------------------------- /ansible/cassandra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/cassandra.yml -------------------------------------------------------------------------------- /ansible/db-operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/README.md -------------------------------------------------------------------------------- /ansible/db-operations/cassandra_alter_keyspace_replication.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/cassandra_alter_keyspace_replication.yml -------------------------------------------------------------------------------- /ansible/db-operations/cassandra_cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/cassandra_cleanup.yml -------------------------------------------------------------------------------- /ansible/db-operations/cassandra_healthy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/cassandra_healthy.yml -------------------------------------------------------------------------------- /ansible/db-operations/cassandra_post_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/cassandra_post_upgrade.yml -------------------------------------------------------------------------------- /ansible/db-operations/cassandra_pre_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/cassandra_pre_upgrade.yml -------------------------------------------------------------------------------- /ansible/db-operations/cassandra_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/cassandra_restart.yml -------------------------------------------------------------------------------- /ansible/db-operations/cassandra_rolling_repair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/cassandra_rolling_repair.yml -------------------------------------------------------------------------------- /ansible/db-operations/elasticsearch_joined.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/elasticsearch_joined.yml -------------------------------------------------------------------------------- /ansible/db-operations/elasticsearch_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/elasticsearch_restart.yml -------------------------------------------------------------------------------- /ansible/db-operations/elasticsearch_stop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/elasticsearch_stop.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/cassandra_cluster_healthy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/cassandra_cluster_healthy.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/cassandra_down.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/cassandra_down.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/cassandra_manual_repair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/cassandra_manual_repair.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/cassandra_remove_backup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/cassandra_remove_backup.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/cassandra_remove_cron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/cassandra_remove_cron.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/cassandra_remove_repair_and_daily_backup_cron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/cassandra_remove_repair_and_daily_backup_cron.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/cassandra_up.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/cassandra_up.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/cassandra_wait_ongoing_repair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/cassandra_wait_ongoing_repair.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/elasticsearch_cluster_healthy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/elasticsearch_cluster_healthy.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/elasticsearch_down.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/elasticsearch_down.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/elasticsearch_shard_allocation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/elasticsearch_shard_allocation.yml -------------------------------------------------------------------------------- /ansible/db-operations/tasks/elasticsearch_up.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/db-operations/tasks/elasticsearch_up.yml -------------------------------------------------------------------------------- /ansible/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/elasticsearch.yml -------------------------------------------------------------------------------- /ansible/files/hetzner_server_libvirt_default_net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/hetzner_server_libvirt_default_net.xml -------------------------------------------------------------------------------- /ansible/files/hetzner_server_nftables.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/hetzner_server_nftables.conf.j2 -------------------------------------------------------------------------------- /ansible/files/hetzner_server_sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/hetzner_server_sshd_config -------------------------------------------------------------------------------- /ansible/files/registry/.gitignore: -------------------------------------------------------------------------------- 1 | certs 2 | -------------------------------------------------------------------------------- /ansible/files/registry/images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/registry/images.sh -------------------------------------------------------------------------------- /ansible/files/registry/list_of_docker_images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/registry/list_of_docker_images.txt -------------------------------------------------------------------------------- /ansible/files/registry/mk-certs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/registry/mk-certs -------------------------------------------------------------------------------- /ansible/files/registry/mk-sub-certificate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/registry/mk-sub-certificate -------------------------------------------------------------------------------- /ansible/files/registry/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/registry/openssl.cnf -------------------------------------------------------------------------------- /ansible/files/registry/registry-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/registry/registry-run.sh -------------------------------------------------------------------------------- /ansible/files/registry/upload_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/files/registry/upload_image.sh -------------------------------------------------------------------------------- /ansible/files/serve-assets.service: -------------------------------------------------------------------------------- 1 | [Service] 2 | ExecStart=/usr/bin/python3 -m http.server 8080 3 | WorkingDirectory=/opt/assets/ 4 | -------------------------------------------------------------------------------- /ansible/get-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/get-logs.yml -------------------------------------------------------------------------------- /ansible/helm_external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/helm_external.yml -------------------------------------------------------------------------------- /ansible/hetzner-single-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/hetzner-single-deploy.yml -------------------------------------------------------------------------------- /ansible/host_vars/localhost/python.yml: -------------------------------------------------------------------------------- 1 | ansible_python_interpreter: "{{ lookup('env','LOCALHOST_PYTHON') }}" 2 | -------------------------------------------------------------------------------- /ansible/inventory/demo/host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/inventory/demo/host.yml -------------------------------------------------------------------------------- /ansible/inventory/offline/99-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/inventory/offline/99-static -------------------------------------------------------------------------------- /ansible/inventory/offline/group_vars/all/offline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/inventory/offline/group_vars/all/offline.yml -------------------------------------------------------------------------------- /ansible/inventory/offline/group_vars/demo/offline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/inventory/offline/group_vars/demo/offline.yml -------------------------------------------------------------------------------- /ansible/inventory/offline/group_vars/postgresql/postgresql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/inventory/offline/group_vars/postgresql/postgresql.yml -------------------------------------------------------------------------------- /ansible/inventory/prod/hosts.example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/inventory/prod/hosts.example.ini -------------------------------------------------------------------------------- /ansible/iptables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/iptables.yml -------------------------------------------------------------------------------- /ansible/kube-minio-static-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/kube-minio-static-files.yml -------------------------------------------------------------------------------- /ansible/kubernetes-fetch-kubeconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/kubernetes-fetch-kubeconfig.yml -------------------------------------------------------------------------------- /ansible/kubernetes-renew-certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/kubernetes-renew-certs.yml -------------------------------------------------------------------------------- /ansible/kubernetes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/kubernetes.yml -------------------------------------------------------------------------------- /ansible/kubernetes_logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/kubernetes_logging.yml -------------------------------------------------------------------------------- /ansible/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/logging.yml -------------------------------------------------------------------------------- /ansible/minio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/minio.yml -------------------------------------------------------------------------------- /ansible/ntp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/ntp.yml -------------------------------------------------------------------------------- /ansible/postgresql-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-deploy.yml -------------------------------------------------------------------------------- /ansible/postgresql-playbooks/clean_existing_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-playbooks/clean_existing_setup.yml -------------------------------------------------------------------------------- /ansible/postgresql-playbooks/postgresql-deploy-primary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-playbooks/postgresql-deploy-primary.yml -------------------------------------------------------------------------------- /ansible/postgresql-playbooks/postgresql-deploy-replica.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-playbooks/postgresql-deploy-replica.yml -------------------------------------------------------------------------------- /ansible/postgresql-playbooks/postgresql-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-playbooks/postgresql-install.yml -------------------------------------------------------------------------------- /ansible/postgresql-playbooks/postgresql-monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-playbooks/postgresql-monitoring.yml -------------------------------------------------------------------------------- /ansible/postgresql-playbooks/postgresql-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-playbooks/postgresql-secrets.yml -------------------------------------------------------------------------------- /ansible/postgresql-playbooks/postgresql-verify-HA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-playbooks/postgresql-verify-HA.yml -------------------------------------------------------------------------------- /ansible/postgresql-playbooks/postgresql-wire-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/postgresql-playbooks/postgresql-wire-setup.yml -------------------------------------------------------------------------------- /ansible/provision-sft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/provision-sft.yml -------------------------------------------------------------------------------- /ansible/rabbitmq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/rabbitmq.yml -------------------------------------------------------------------------------- /ansible/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/registry.yml -------------------------------------------------------------------------------- /ansible/roles/etcd-helpers/defaults/main.yml: -------------------------------------------------------------------------------- 1 | etcd_helpers_path: /usr/local/bin 2 | -------------------------------------------------------------------------------- /ansible/roles/etcd-helpers/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/etcd-helpers/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/etcd-helpers/templates/etcd-health.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/etcd-helpers/templates/etcd-health.sh.j2 -------------------------------------------------------------------------------- /ansible/roles/etcd-helpers/templates/etcdctl3.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/etcd-helpers/templates/etcdctl3.sh.j2 -------------------------------------------------------------------------------- /ansible/roles/minio-static-files/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/minio-static-files/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/minio-static-files/files/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/minio-static-files/files/android.json -------------------------------------------------------------------------------- /ansible/roles/minio-static-files/files/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/minio-static-files/files/ios.json -------------------------------------------------------------------------------- /ansible/roles/minio-static-files/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/minio-static-files/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/minio-static-files/templates/deeplink.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/minio-static-files/templates/deeplink.html.j2 -------------------------------------------------------------------------------- /ansible/roles/minio-static-files/templates/deeplink.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/minio-static-files/templates/deeplink.json.j2 -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/cluster.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/config.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/configure_dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/configure_dns.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/create_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/create_users.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/enable_ha_queues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/enable_ha_queues.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/erlang_cookie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/erlang_cookie.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/hosts.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/install.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/join_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/join_cluster.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/service.yaml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/tasks/tls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/tasks/tls.yml -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/templates/erlang.cookie.j2: -------------------------------------------------------------------------------- 1 | {{ rabbitmq_erlang_cookie }} -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/templates/etc/default/rabbitmq-server.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/templates/etc/default/rabbitmq-server.j2 -------------------------------------------------------------------------------- /ansible/roles/rabbitmq-cluster/templates/etc/rabbitmq/rabbitmq.config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/rabbitmq-cluster/templates/etc/rabbitmq/rabbitmq.config.j2 -------------------------------------------------------------------------------- /ansible/roles/systemd-coredump/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/systemd-coredump/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/systemd-coredump/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/roles/systemd-coredump/tasks/main.yml -------------------------------------------------------------------------------- /ansible/seed-offline-containerd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/seed-offline-containerd.yml -------------------------------------------------------------------------------- /ansible/seed-offline-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/seed-offline-docker.yml -------------------------------------------------------------------------------- /ansible/setup-offline-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/setup-offline-sources.yml -------------------------------------------------------------------------------- /ansible/sync_time.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/sync_time.yml -------------------------------------------------------------------------------- /ansible/tasks/helm_external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/tasks/helm_external.yml -------------------------------------------------------------------------------- /ansible/templates/elasticsearch.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/elasticsearch.conf.j2 -------------------------------------------------------------------------------- /ansible/templates/helm_external.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/helm_external.yaml.j2 -------------------------------------------------------------------------------- /ansible/templates/ntp.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/ntp.conf.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/detect-rogue-primary.service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/detect-rogue-primary.service.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/detect-rogue-primary.timer.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/detect-rogue-primary.timer.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/detect_rogue_primary.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/detect_rogue_primary.sh.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/failover_validation.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/failover_validation.sh.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/pg_hba.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/pg_hba.conf.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/pgpass.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/pgpass.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/postgresql.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/postgresql.conf.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/repmgr.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/repmgr.conf.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/repmgrd_service.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/repmgrd_service.j2 -------------------------------------------------------------------------------- /ansible/templates/postgresql/simple_fence.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/postgresql/simple_fence.sh.j2 -------------------------------------------------------------------------------- /ansible/templates/qradar.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/templates/qradar.conf.j2 -------------------------------------------------------------------------------- /ansible/tinc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/tinc.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/clean_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/clean_cluster.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/deploy_wiab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/deploy_wiab.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/download_artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/download_artifact.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/hairpin_networking.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/hairpin_networking.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/helm_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/helm_install.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/install_pkgs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/install_pkgs.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/iptables_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/iptables_rules.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/minikube_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/minikube_cluster.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/setup_ssh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/setup_ssh.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/verify_dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/verify_dns.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/verify_wire_ip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/verify_wire_ip.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/wire_secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/wire_secrets.yml -------------------------------------------------------------------------------- /ansible/wiab-demo/wire_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/ansible/wiab-demo/wire_values.yml -------------------------------------------------------------------------------- /bin/accept-invitation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/accept-invitation.sh -------------------------------------------------------------------------------- /bin/autodeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/autodeploy.sh -------------------------------------------------------------------------------- /bin/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/bootstrap/README.md -------------------------------------------------------------------------------- /bin/bootstrap/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/bootstrap/init.sh -------------------------------------------------------------------------------- /bin/bootstrap/inside.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/bootstrap/inside.sh -------------------------------------------------------------------------------- /bin/debug_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/debug_logs.sh -------------------------------------------------------------------------------- /bin/demo-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/demo-setup.sh -------------------------------------------------------------------------------- /bin/deployment-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/deployment-info.sh -------------------------------------------------------------------------------- /bin/fix_default_router.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/fix_default_router.sh -------------------------------------------------------------------------------- /bin/generate-image-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/generate-image-list.sh -------------------------------------------------------------------------------- /bin/grafana-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/grafana-vm.sh -------------------------------------------------------------------------------- /bin/information-gathering.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/information-gathering.sh -------------------------------------------------------------------------------- /bin/install-grafana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/install-grafana.sh -------------------------------------------------------------------------------- /bin/logging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/logging.sh -------------------------------------------------------------------------------- /bin/offline-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/offline-cluster.sh -------------------------------------------------------------------------------- /bin/offline-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/offline-deploy.sh -------------------------------------------------------------------------------- /bin/offline-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/offline-env.sh -------------------------------------------------------------------------------- /bin/offline-helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/offline-helm.sh -------------------------------------------------------------------------------- /bin/offline-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/offline-secrets.sh -------------------------------------------------------------------------------- /bin/offline-vm-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/offline-vm-setup.sh -------------------------------------------------------------------------------- /bin/prod-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/prod-init.sh -------------------------------------------------------------------------------- /bin/prod-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/prod-setup.sh -------------------------------------------------------------------------------- /bin/secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/secrets.sh -------------------------------------------------------------------------------- /bin/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/shellcheck.sh -------------------------------------------------------------------------------- /bin/sync-k8s-secret-to-wire-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/sync-k8s-secret-to-wire-secrets.sh -------------------------------------------------------------------------------- /bin/test-aws-s3-auth-v4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/test-aws-s3-auth-v4.sh -------------------------------------------------------------------------------- /bin/wiab-demo/offline-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/wiab-demo/offline-env.sh -------------------------------------------------------------------------------- /bin/wiab-demo/offline_deploy_k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/bin/wiab-demo/offline_deploy_k8s.sh -------------------------------------------------------------------------------- /changelog.d/0-release-notes/.title: -------------------------------------------------------------------------------- 1 | Release notes -------------------------------------------------------------------------------- /changelog.d/0-release-notes/add-iam-user-for-cargohold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/0-release-notes/add-iam-user-for-cargohold -------------------------------------------------------------------------------- /changelog.d/1-debian-builds/.title: -------------------------------------------------------------------------------- 1 | Base OS dependencies -------------------------------------------------------------------------------- /changelog.d/2-wire-builds/.title: -------------------------------------------------------------------------------- 1 | Internal Dependencies -------------------------------------------------------------------------------- /changelog.d/2-wire-builds/configure-pg-values-for-brig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/2-wire-builds/configure-pg-values-for-brig -------------------------------------------------------------------------------- /changelog.d/2-wire-builds/demo-values-changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/2-wire-builds/demo-values-changes -------------------------------------------------------------------------------- /changelog.d/2-wire-builds/fix-build-tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/2-wire-builds/fix-build-tasks -------------------------------------------------------------------------------- /changelog.d/2-wire-builds/optimize-offline-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/2-wire-builds/optimize-offline-env -------------------------------------------------------------------------------- /changelog.d/2-wire-builds/reaper-kubectl-image: -------------------------------------------------------------------------------- 1 | Fixed: reaper kubectl image 2 | -------------------------------------------------------------------------------- /changelog.d/2-wire-builds/unsupported-grafana-dashboards: -------------------------------------------------------------------------------- 1 | add unsupported dir with grafana dashboards -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/.title: -------------------------------------------------------------------------------- 1 | External dependencies -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/cd-demo-wiab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/cd-demo-wiab -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/cert-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/cert-manager -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/changes-in-cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/changes-in-cd -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/demo-wiab-ansible-fixes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/demo-wiab-ansible-fixes -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/fix-chart-patching-broken-pipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/fix-chart-patching-broken-pipe -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/fix-demo-inventory: -------------------------------------------------------------------------------- 1 | Fixed: fix the artifact for demo-wiab deployment 2 | -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/move-repmgr-secret-to-k8s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/move-repmgr-secret-to-k8s -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/optimize-default-build-deploy-process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/optimize-default-build-deploy-process -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/pg_ha_cluster: -------------------------------------------------------------------------------- 1 | Added: PostgreSQL high availability cluster with repmgr 2 | -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/rabbitmq-external-example-file: -------------------------------------------------------------------------------- 1 | Add RabbitMq external example values file -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/standardize-yq-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/standardize-yq-version -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/update-wiab: -------------------------------------------------------------------------------- 1 | Fixed: fix wiab for the zauth and demo-smtp change 2 | -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/wpb-17218: -------------------------------------------------------------------------------- 1 | Added: Enable support for postgres deployment via ansible 2 | -------------------------------------------------------------------------------- /changelog.d/3-deploy-builds/wpb-18722-hardcoded-pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/3-deploy-builds/wpb-18722-hardcoded-pass -------------------------------------------------------------------------------- /changelog.d/4-docs/.title: -------------------------------------------------------------------------------- 1 | Offline Documentation -------------------------------------------------------------------------------- /changelog.d/4-docs/dkim-docs: -------------------------------------------------------------------------------- 1 | Add documentation on how to set up DKIM for smtp in wire-server -------------------------------------------------------------------------------- /changelog.d/4-docs/enable-changelog: -------------------------------------------------------------------------------- 1 | Added: Enable changelog management in wire-server-deploy 2 | -------------------------------------------------------------------------------- /changelog.d/4-docs/fix-private-ca-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/4-docs/fix-private-ca-docs -------------------------------------------------------------------------------- /changelog.d/5-bug-fixes/.title: -------------------------------------------------------------------------------- 1 | Bug fixes and other updates -------------------------------------------------------------------------------- /changelog.d/5-bug-fixes/fix-changelog-for-cotrun: -------------------------------------------------------------------------------- 1 | Fixed: Include cotrun chart in the default bundle 2 | -------------------------------------------------------------------------------- /changelog.d/5-bug-fixes/fix-changelog-for-zebot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/5-bug-fixes/fix-changelog-for-zebot -------------------------------------------------------------------------------- /changelog.d/5-bug-fixes/redis-ephemeral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/5-bug-fixes/redis-ephemeral -------------------------------------------------------------------------------- /changelog.d/5-bug-fixes/remove-migrate-job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/5-bug-fixes/remove-migrate-job -------------------------------------------------------------------------------- /changelog.d/mk-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/mk-changelog.sh -------------------------------------------------------------------------------- /changelog.d/mk-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/changelog.d/mk-cleanup.sh -------------------------------------------------------------------------------- /dashboards/api_upload/CPU_and_Memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/CPU_and_Memory.json -------------------------------------------------------------------------------- /dashboards/api_upload/Calling__TURN__coturn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Calling__TURN__coturn.json -------------------------------------------------------------------------------- /dashboards/api_upload/Kubernetes__System__API_Server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Kubernetes__System__API_Server.json -------------------------------------------------------------------------------- /dashboards/api_upload/Kubernetes__System__CoreDNS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Kubernetes__System__CoreDNS.json -------------------------------------------------------------------------------- /dashboards/api_upload/Kubernetes__Views__Global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Kubernetes__Views__Global.json -------------------------------------------------------------------------------- /dashboards/api_upload/Kubernetes__Views__Namespaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Kubernetes__Views__Namespaces.json -------------------------------------------------------------------------------- /dashboards/api_upload/Kubernetes__Views__Nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Kubernetes__Views__Nodes.json -------------------------------------------------------------------------------- /dashboards/api_upload/Kubernetes__Views__Pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Kubernetes__Views__Pods.json -------------------------------------------------------------------------------- /dashboards/api_upload/NGINX_Ingress_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/NGINX_Ingress_controller.json -------------------------------------------------------------------------------- /dashboards/api_upload/Node_Exporter_Full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Node_Exporter_Full.json -------------------------------------------------------------------------------- /dashboards/api_upload/Prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Prometheus.json -------------------------------------------------------------------------------- /dashboards/api_upload/SFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/SFT.json -------------------------------------------------------------------------------- /dashboards/api_upload/Wire_Services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/api_upload/Wire_Services.json -------------------------------------------------------------------------------- /dashboards/grafana_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/grafana_sync.sh -------------------------------------------------------------------------------- /dashboards/manual_upload/coturn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/coturn.json -------------------------------------------------------------------------------- /dashboards/manual_upload/cpu_and_memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/cpu_and_memory.json -------------------------------------------------------------------------------- /dashboards/manual_upload/dashboard_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/dashboard_full.json -------------------------------------------------------------------------------- /dashboards/manual_upload/k8s _ system _ apiserver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/k8s _ system _ apiserver.json -------------------------------------------------------------------------------- /dashboards/manual_upload/k8s_global_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/k8s_global_view.json -------------------------------------------------------------------------------- /dashboards/manual_upload/k8s_namespace_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/k8s_namespace_view.json -------------------------------------------------------------------------------- /dashboards/manual_upload/k8s_node_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/k8s_node_view.json -------------------------------------------------------------------------------- /dashboards/manual_upload/k8s_pod_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/k8s_pod_view.json -------------------------------------------------------------------------------- /dashboards/manual_upload/k8s_system_coredns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/k8s_system_coredns.json -------------------------------------------------------------------------------- /dashboards/manual_upload/nginx_ingrerss_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/nginx_ingrerss_controller.json -------------------------------------------------------------------------------- /dashboards/manual_upload/node_exporter_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/node_exporter_full.json -------------------------------------------------------------------------------- /dashboards/manual_upload/prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/prometheus.json -------------------------------------------------------------------------------- /dashboards/manual_upload/sft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/sft.json -------------------------------------------------------------------------------- /dashboards/manual_upload/wire_service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/dashboards/manual_upload/wire_service.json -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/default.nix -------------------------------------------------------------------------------- /example-values/external-dns/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/example-values/external-dns/demo-values.example.yaml -------------------------------------------------------------------------------- /example-values/metallb/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/example-values/metallb/demo-values.example.yaml -------------------------------------------------------------------------------- /example-values/outlook-addin/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/example-values/outlook-addin/prod-values.example.yaml -------------------------------------------------------------------------------- /example-values/wire-server-metrics/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/example-values/wire-server-metrics/demo-values.example.yaml -------------------------------------------------------------------------------- /examples/control-planes-only-k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/control-planes-only-k8s/README.md -------------------------------------------------------------------------------- /examples/control-planes-only-k8s/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/control-planes-only-k8s/terraform.tfvars -------------------------------------------------------------------------------- /examples/multi-instance-sft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-instance-sft/README.md -------------------------------------------------------------------------------- /examples/multi-instance-sft/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-instance-sft/terraform.tfvars -------------------------------------------------------------------------------- /examples/multi-node-k8s-with-lb-and-dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-node-k8s-with-lb-and-dns/README.md -------------------------------------------------------------------------------- /examples/multi-node-k8s-with-lb-and-dns/backend.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-node-k8s-with-lb-and-dns/backend.tfvars -------------------------------------------------------------------------------- /examples/multi-node-k8s-with-lb-and-dns/helm_vars/demo-smtp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-node-k8s-with-lb-and-dns/helm_vars/demo-smtp/values.yaml -------------------------------------------------------------------------------- /examples/multi-node-k8s-with-lb-and-dns/helm_vars/nginx-ingress-services/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-node-k8s-with-lb-and-dns/helm_vars/nginx-ingress-services/values.yaml -------------------------------------------------------------------------------- /examples/multi-node-k8s-with-lb-and-dns/helm_vars/wire-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-node-k8s-with-lb-and-dns/helm_vars/wire-server/values.yaml -------------------------------------------------------------------------------- /examples/multi-node-k8s-with-lb-and-dns/helmfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-node-k8s-with-lb-and-dns/helmfile.yaml -------------------------------------------------------------------------------- /examples/multi-node-k8s-with-lb-and-dns/inventory/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-node-k8s-with-lb-and-dns/inventory/inventory.yml -------------------------------------------------------------------------------- /examples/multi-node-k8s-with-lb-and-dns/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/multi-node-k8s-with-lb-and-dns/terraform.tfvars -------------------------------------------------------------------------------- /examples/team-provisioning-qr-codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/team-provisioning-qr-codes/README.md -------------------------------------------------------------------------------- /examples/team-provisioning-qr-codes/generate-user-pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/examples/team-provisioning-qr-codes/generate-user-pdf.sh -------------------------------------------------------------------------------- /helm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/helm/Makefile -------------------------------------------------------------------------------- /helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/helm/README.md -------------------------------------------------------------------------------- /nix/docker-alpine.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/docker-alpine.nix -------------------------------------------------------------------------------- /nix/overlay.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/overlay.nix -------------------------------------------------------------------------------- /nix/pkgs/helm-mapkubeapis.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/pkgs/helm-mapkubeapis.nix -------------------------------------------------------------------------------- /nix/pkgs/kubernetes-tools.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/pkgs/kubernetes-tools.nix -------------------------------------------------------------------------------- /nix/pkgs/wire-binaries.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/pkgs/wire-binaries.nix -------------------------------------------------------------------------------- /nix/scripts/create-build-entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/scripts/create-build-entry.sh -------------------------------------------------------------------------------- /nix/scripts/create-container-dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/scripts/create-container-dump.sh -------------------------------------------------------------------------------- /nix/scripts/create-offline-artifact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/scripts/create-offline-artifact.sh -------------------------------------------------------------------------------- /nix/scripts/generate-gpg1-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/scripts/generate-gpg1-key.sh -------------------------------------------------------------------------------- /nix/scripts/list-helm-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/scripts/list-helm-containers.sh -------------------------------------------------------------------------------- /nix/scripts/mirror-apt-jammy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/scripts/mirror-apt-jammy.sh -------------------------------------------------------------------------------- /nix/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/sources.json -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /offline/cd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/cd.sh -------------------------------------------------------------------------------- /offline/cd_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/cd_demo.sh -------------------------------------------------------------------------------- /offline/coturn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/coturn.md -------------------------------------------------------------------------------- /offline/default-build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/default-build/build.sh -------------------------------------------------------------------------------- /offline/demo-build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/demo-build/build.sh -------------------------------------------------------------------------------- /offline/demo-build/post_chart_process_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/demo-build/post_chart_process_1.sh -------------------------------------------------------------------------------- /offline/demo-wiab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/demo-wiab.md -------------------------------------------------------------------------------- /offline/docs_ubuntu_22.04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/docs_ubuntu_22.04.md -------------------------------------------------------------------------------- /offline/federation_preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/federation_preparation.md -------------------------------------------------------------------------------- /offline/instrument_monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/instrument_monitoring.md -------------------------------------------------------------------------------- /offline/k8ssandra_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/k8ssandra_setup.md -------------------------------------------------------------------------------- /offline/ldap-scim-bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/ldap-scim-bridge.md -------------------------------------------------------------------------------- /offline/local_persistent_storage_k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/local_persistent_storage_k8s.md -------------------------------------------------------------------------------- /offline/min-build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/min-build/build.sh -------------------------------------------------------------------------------- /offline/postgresql-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/postgresql-cluster.md -------------------------------------------------------------------------------- /offline/pull_helm_charts_flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/pull_helm_charts_flow.md -------------------------------------------------------------------------------- /offline/rabbitmq_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/rabbitmq_setup.md -------------------------------------------------------------------------------- /offline/single_hetzner_machine_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/single_hetzner_machine_installation.md -------------------------------------------------------------------------------- /offline/smtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/smtp.md -------------------------------------------------------------------------------- /offline/stackIT-wiab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/stackIT-wiab.md -------------------------------------------------------------------------------- /offline/tasks/build_adminhost_containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/build_adminhost_containers.sh -------------------------------------------------------------------------------- /offline/tasks/build_linux_pkgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/build_linux_pkgs.sh -------------------------------------------------------------------------------- /offline/tasks/patch-chart-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/patch-chart-images.sh -------------------------------------------------------------------------------- /offline/tasks/post_chart_process_0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/post_chart_process_0.sh -------------------------------------------------------------------------------- /offline/tasks/pre_chart_process_0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/pre_chart_process_0.sh -------------------------------------------------------------------------------- /offline/tasks/pre_clean_values_0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/pre_clean_values_0.sh -------------------------------------------------------------------------------- /offline/tasks/proc_pull_charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/proc_pull_charts.sh -------------------------------------------------------------------------------- /offline/tasks/proc_pull_ext_charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/proc_pull_ext_charts.sh -------------------------------------------------------------------------------- /offline/tasks/proc_system_containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/proc_system_containers.sh -------------------------------------------------------------------------------- /offline/tasks/proc_wire_binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/proc_wire_binaries.sh -------------------------------------------------------------------------------- /offline/tasks/process_charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/tasks/process_charts.sh -------------------------------------------------------------------------------- /offline/upgrades/ubuntu_18_to_ubuntu_22_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/upgrades/ubuntu_18_to_ubuntu_22_migration.md -------------------------------------------------------------------------------- /offline/upgrades/upgrading-SFT_ONLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/upgrades/upgrading-SFT_ONLY.md -------------------------------------------------------------------------------- /offline/upgrades/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/offline/upgrades/upgrading.md -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- 1 | .terraform 2 | -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/environment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/Makefile -------------------------------------------------------------------------------- /terraform/environment/aws.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/aws.tf -------------------------------------------------------------------------------- /terraform/environment/hcloud.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/hcloud.tf -------------------------------------------------------------------------------- /terraform/environment/hcloud.vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/hcloud.vars.tf -------------------------------------------------------------------------------- /terraform/environment/inventory.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/inventory.tf -------------------------------------------------------------------------------- /terraform/environment/kubernetes.cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/kubernetes.cluster.tf -------------------------------------------------------------------------------- /terraform/environment/kubernetes.cluster.vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/kubernetes.cluster.vars.tf -------------------------------------------------------------------------------- /terraform/environment/kubernetes.dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/kubernetes.dns.tf -------------------------------------------------------------------------------- /terraform/environment/kubernetes.dns.vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/kubernetes.dns.vars.tf -------------------------------------------------------------------------------- /terraform/environment/kubernetes.inventory.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/kubernetes.inventory.tf -------------------------------------------------------------------------------- /terraform/environment/main.vars.tf: -------------------------------------------------------------------------------- 1 | variable "environment" { 2 | type = string 3 | } 4 | -------------------------------------------------------------------------------- /terraform/environment/sft.inventory.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/sft.inventory.tf -------------------------------------------------------------------------------- /terraform/environment/sft.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/sft.tf -------------------------------------------------------------------------------- /terraform/environment/sft.vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/sft.vars.tf -------------------------------------------------------------------------------- /terraform/environment/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/environment/terraform.tf -------------------------------------------------------------------------------- /terraform/examples/.gitignore: -------------------------------------------------------------------------------- 1 | .terraform 2 | -------------------------------------------------------------------------------- /terraform/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/README.md -------------------------------------------------------------------------------- /terraform/examples/create-infrastructure.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/create-infrastructure.tf -------------------------------------------------------------------------------- /terraform/examples/inventory.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/inventory.tpl -------------------------------------------------------------------------------- /terraform/examples/wiab-demo-hetzner/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wiab-demo-hetzner/.envrc -------------------------------------------------------------------------------- /terraform/examples/wiab-demo-hetzner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wiab-demo-hetzner/README.md -------------------------------------------------------------------------------- /terraform/examples/wiab-demo-hetzner/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wiab-demo-hetzner/main.tf -------------------------------------------------------------------------------- /terraform/examples/wiab-demo-hetzner/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wiab-demo-hetzner/outputs.tf -------------------------------------------------------------------------------- /terraform/examples/wiab-demo-hetzner/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wiab-demo-hetzner/versions.tf -------------------------------------------------------------------------------- /terraform/examples/wire-server-deploy-offline-hetzner/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wire-server-deploy-offline-hetzner/.envrc -------------------------------------------------------------------------------- /terraform/examples/wire-server-deploy-offline-hetzner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wire-server-deploy-offline-hetzner/README.md -------------------------------------------------------------------------------- /terraform/examples/wire-server-deploy-offline-hetzner/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wire-server-deploy-offline-hetzner/main.tf -------------------------------------------------------------------------------- /terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wire-server-deploy-offline-hetzner/outputs.tf -------------------------------------------------------------------------------- /terraform/examples/wire-server-deploy-offline-hetzner/setup_nodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wire-server-deploy-offline-hetzner/setup_nodes.yml -------------------------------------------------------------------------------- /terraform/examples/wire-server-deploy-offline-hetzner/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/examples/wire-server-deploy-offline-hetzner/versions.tf -------------------------------------------------------------------------------- /terraform/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-ami-ubuntu-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-ami-ubuntu-search/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-ami-ubuntu-search/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-ami-ubuntu-search/main.tf -------------------------------------------------------------------------------- /terraform/modules/aws-ami-ubuntu-search/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-ami-ubuntu-search/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/data.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/locals.mailing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/locals.mailing.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/main.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = "~> 1.1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/outputs.mailing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/outputs.mailing.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.dns.mailing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.dns.mailing.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.dynamodb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.dynamodb.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.iam.mailing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.iam.mailing.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.iam.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.ses.mailing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.ses.mailing.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.sns.mailling.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.sns.mailling.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.sqs.mailing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.sqs.mailing.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.sqs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/resources.sqs.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/variables.mailing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/variables.mailing.tf -------------------------------------------------------------------------------- /terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-brig-prekey-lock-event-queue-email-sending/variables.tf -------------------------------------------------------------------------------- /terraform/modules/aws-cargohold-asset-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-cargohold-asset-storage/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-cargohold-asset-storage/main.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = "~> 1.1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/aws-cargohold-asset-storage/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-cargohold-asset-storage/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/aws-cargohold-asset-storage/resources.iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-cargohold-asset-storage/resources.iam.tf -------------------------------------------------------------------------------- /terraform/modules/aws-cargohold-asset-storage/resources.s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-cargohold-asset-storage/resources.s3.tf -------------------------------------------------------------------------------- /terraform/modules/aws-cargohold-asset-storage/resources.security_groups.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-cargohold-asset-storage/resources.security_groups.tf -------------------------------------------------------------------------------- /terraform/modules/aws-cargohold-asset-storage/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-cargohold-asset-storage/variables.tf -------------------------------------------------------------------------------- /terraform/modules/aws-dns-records/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-dns-records/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-dns-records/data.tf: -------------------------------------------------------------------------------- 1 | data "aws_route53_zone" "rz" { 2 | name = "${var.zone_fqdn}." 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/aws-dns-records/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-dns-records/locals.tf -------------------------------------------------------------------------------- /terraform/modules/aws-dns-records/main.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = "~> 1.1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/aws-dns-records/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-dns-records/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/aws-dns-records/resources.route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-dns-records/resources.route53.tf -------------------------------------------------------------------------------- /terraform/modules/aws-dns-records/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-dns-records/variables.tf -------------------------------------------------------------------------------- /terraform/modules/aws-network-load-balancer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-network-load-balancer/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-network-load-balancer/data.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/modules/aws-network-load-balancer/main.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = "~> 1.1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/aws-network-load-balancer/outputs.tf: -------------------------------------------------------------------------------- 1 | output "fqdn" { 2 | value = aws_lb.nlb.dns_name 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/aws-network-load-balancer/resources.lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-network-load-balancer/resources.lb.tf -------------------------------------------------------------------------------- /terraform/modules/aws-network-load-balancer/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-network-load-balancer/variables.tf -------------------------------------------------------------------------------- /terraform/modules/aws-terraform-state-share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-terraform-state-share/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-terraform-state-share/main.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = "~> 1.1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/aws-terraform-state-share/resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-terraform-state-share/resources.tf -------------------------------------------------------------------------------- /terraform/modules/aws-terraform-state-share/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-terraform-state-share/variables.tf -------------------------------------------------------------------------------- /terraform/modules/aws-vpc-security-groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-vpc-security-groups/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-vpc-security-groups/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-vpc-security-groups/main.tf -------------------------------------------------------------------------------- /terraform/modules/aws-vpc-security-groups/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-vpc-security-groups/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/aws-vpc-security-groups/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-vpc-security-groups/variables.tf -------------------------------------------------------------------------------- /terraform/modules/aws-vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-vpc/README.md -------------------------------------------------------------------------------- /terraform/modules/aws-vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-vpc/main.tf -------------------------------------------------------------------------------- /terraform/modules/aws-vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-vpc/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/aws-vpc/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/aws-vpc/variables.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/load-balancer.locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/load-balancer.locals.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/load-balancer.resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/load-balancer.resources.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/load-balancer.variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/load-balancer.variables.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/locals.tf: -------------------------------------------------------------------------------- 1 | locals { 2 | LABEL_PREFIX = "wire.infra" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/machines.outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/machines.outputs.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/machines.resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/machines.resources.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/machines.variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/machines.variables.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/network.resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/network.resources.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/variables.tf -------------------------------------------------------------------------------- /terraform/modules/hetzner-kubernetes/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/hetzner-kubernetes/versions.tf -------------------------------------------------------------------------------- /terraform/modules/sft/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/sft/dns.tf -------------------------------------------------------------------------------- /terraform/modules/sft/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/sft/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/sft/server.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/sft/server.tf -------------------------------------------------------------------------------- /terraform/modules/sft/srv-announcer-iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/sft/srv-announcer-iam.tf -------------------------------------------------------------------------------- /terraform/modules/sft/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/sft/variables.tf -------------------------------------------------------------------------------- /terraform/modules/sft/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/terraform/modules/sft/versions.tf -------------------------------------------------------------------------------- /unsupported/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/README.md -------------------------------------------------------------------------------- /unsupported/grafana/elasticsearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/elasticsearch.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dasboard_cells_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dasboard_cells_apps.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dasboard_cells_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dasboard_cells_logs.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dasboard_cells_pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dasboard_cells_pods.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_calling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_calling.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_flake_news_failures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_flake_news_failures.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_flake_news_overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_flake_news_overview.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_ingress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_ingress.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_sft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_sft.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_tls_cert_monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_tls_cert_monitor.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_trivy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_trivy.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_wire_compute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_wire_compute.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboard_wire_speed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboard_wire_speed.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboards_general_kube_state_metrics_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboards_general_kube_state_metrics_v2.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboards_general_message_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboards_general_message_stats.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboards_general_nginz_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboards_general_nginz_logs.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboards_general_node_exporter_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboards_general_node_exporter_full.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboards_general_oom_kills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboards_general_oom_kills.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboards_general_wire_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboards_general_wire_services.json -------------------------------------------------------------------------------- /unsupported/grafana/grafana_dashboards_observability_traffic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/grafana_dashboards_observability_traffic.json -------------------------------------------------------------------------------- /unsupported/grafana/k8s-cpu-and-memory-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/k8s-cpu-and-memory-dashboard.json -------------------------------------------------------------------------------- /unsupported/grafana/rabbitmq_overview-10991_rev15-plus-disks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/unsupported/grafana/rabbitmq_overview-10991_rev15-plus-disks.json -------------------------------------------------------------------------------- /utils/download_dashboards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/utils/download_dashboards.sh -------------------------------------------------------------------------------- /utils/generate_graph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/utils/generate_graph.pl -------------------------------------------------------------------------------- /utils/rtpdelay_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/utils/rtpdelay_graph.py -------------------------------------------------------------------------------- /utils/rtpstreams_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/utils/rtpstreams_graph.py -------------------------------------------------------------------------------- /utils/rtpstreams_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/utils/rtpstreams_summary.py -------------------------------------------------------------------------------- /values/account-pages/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/account-pages/demo-values.example.yaml -------------------------------------------------------------------------------- /values/account-pages/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/account-pages/prod-values.example.yaml -------------------------------------------------------------------------------- /values/aws-ingress/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/aws-ingress/demo-values.example.yaml -------------------------------------------------------------------------------- /values/cassandra-external/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/cassandra-external/prod-values.example.yaml -------------------------------------------------------------------------------- /values/cert-manager/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/cert-manager/demo-values.example.yaml -------------------------------------------------------------------------------- /values/cert-manager/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/cert-manager/prod-values.example.yaml -------------------------------------------------------------------------------- /values/coturn/demo-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/coturn/demo-secrets.example.yaml -------------------------------------------------------------------------------- /values/coturn/demo-values.example.yaml: -------------------------------------------------------------------------------- 1 | # using upstream values for coturn helm -------------------------------------------------------------------------------- /values/coturn/prod-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/coturn/prod-secrets.example.yaml -------------------------------------------------------------------------------- /values/coturn/prod-values.example.yaml: -------------------------------------------------------------------------------- 1 | # using upstream values for coturn helm -------------------------------------------------------------------------------- /values/databases-ephemeral/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/databases-ephemeral/demo-values.example.yaml -------------------------------------------------------------------------------- /values/databases-ephemeral/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/databases-ephemeral/prod-values.example.yaml -------------------------------------------------------------------------------- /values/elasticsearch-external/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/elasticsearch-external/prod-values.example.yaml -------------------------------------------------------------------------------- /values/fake-aws/demo-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/fake-aws/demo-secrets.example.yaml -------------------------------------------------------------------------------- /values/fake-aws/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/fake-aws/demo-values.example.yaml -------------------------------------------------------------------------------- /values/fake-aws/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/fake-aws/prod-values.example.yaml -------------------------------------------------------------------------------- /values/fluent-bit/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/fluent-bit/prod-values.example.yaml -------------------------------------------------------------------------------- /values/ingress-nginx-controller/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/ingress-nginx-controller/demo-values.example.yaml -------------------------------------------------------------------------------- /values/ingress-nginx-controller/hetzner-ci.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/ingress-nginx-controller/hetzner-ci.example.yaml -------------------------------------------------------------------------------- /values/ingress-nginx-controller/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/ingress-nginx-controller/prod-values.example.yaml -------------------------------------------------------------------------------- /values/k8ssandra-operator/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/k8ssandra-operator/prod-values.example.yaml -------------------------------------------------------------------------------- /values/k8ssandra-test-cluster/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/k8ssandra-test-cluster/prod-values.example.yaml -------------------------------------------------------------------------------- /values/keycloakx/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/keycloakx/prod-values.example.yaml -------------------------------------------------------------------------------- /values/kube-prometheus-stack/demo-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/kube-prometheus-stack/demo-secrets.example.yaml -------------------------------------------------------------------------------- /values/kube-prometheus-stack/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/kube-prometheus-stack/demo-values.example.yaml -------------------------------------------------------------------------------- /values/kube-prometheus-stack/prod-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/kube-prometheus-stack/prod-secrets.example.yaml -------------------------------------------------------------------------------- /values/ldap-scim-bridge/values-prod.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/ldap-scim-bridge/values-prod.example.yaml -------------------------------------------------------------------------------- /values/minio-external/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/minio-external/prod-values.example.yaml -------------------------------------------------------------------------------- /values/nginx-ingress-services/demo-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/nginx-ingress-services/demo-secrets.example.yaml -------------------------------------------------------------------------------- /values/nginx-ingress-services/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/nginx-ingress-services/demo-values.example.yaml -------------------------------------------------------------------------------- /values/nginx-ingress-services/prod-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/nginx-ingress-services/prod-secrets.example.yaml -------------------------------------------------------------------------------- /values/nginx-ingress-services/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/nginx-ingress-services/prod-values.example.yaml -------------------------------------------------------------------------------- /values/postgresql-external/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/postgresql-external/demo-values.example.yaml -------------------------------------------------------------------------------- /values/postgresql-external/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/postgresql-external/prod-values.example.yaml -------------------------------------------------------------------------------- /values/postgresql/demo-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/postgresql/demo-secrets.example.yaml -------------------------------------------------------------------------------- /values/postgresql/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/postgresql/demo-values.example.yaml -------------------------------------------------------------------------------- /values/rabbitmq-external/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/rabbitmq-external/prod-values.example.yaml -------------------------------------------------------------------------------- /values/rabbitmq/demo-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/rabbitmq/demo-secrets.example.yaml -------------------------------------------------------------------------------- /values/rabbitmq/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/rabbitmq/demo-values.example.yaml -------------------------------------------------------------------------------- /values/rabbitmq/prod-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/rabbitmq/prod-secrets.example.yaml -------------------------------------------------------------------------------- /values/rabbitmq/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/rabbitmq/prod-values.example.yaml -------------------------------------------------------------------------------- /values/reaper/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/reaper/demo-values.example.yaml -------------------------------------------------------------------------------- /values/reaper/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/reaper/prod-values.example.yaml -------------------------------------------------------------------------------- /values/redis-ephemeral/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/redis-ephemeral/prod-values.example.yaml -------------------------------------------------------------------------------- /values/restund/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/restund/prod-values.example.yaml -------------------------------------------------------------------------------- /values/sftd/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/sftd/demo-values.example.yaml -------------------------------------------------------------------------------- /values/sftd/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/sftd/prod-values.example.yaml -------------------------------------------------------------------------------- /values/smallstep-accomp/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/smallstep-accomp/demo-values.example.yaml -------------------------------------------------------------------------------- /values/smallstep-accomp/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/smallstep-accomp/prod-values.example.yaml -------------------------------------------------------------------------------- /values/smtp/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/smtp/demo-values.example.yaml -------------------------------------------------------------------------------- /values/smtp/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/smtp/prod-values.example.yaml -------------------------------------------------------------------------------- /values/step-certificates/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/step-certificates/demo-values.example.yaml -------------------------------------------------------------------------------- /values/step-certificates/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/step-certificates/prod-values.example.yaml -------------------------------------------------------------------------------- /values/team-settings/demo-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/team-settings/demo-secrets.example.yaml -------------------------------------------------------------------------------- /values/team-settings/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/team-settings/demo-values.example.yaml -------------------------------------------------------------------------------- /values/team-settings/prod-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/team-settings/prod-secrets.example.yaml -------------------------------------------------------------------------------- /values/team-settings/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/team-settings/prod-values.example.yaml -------------------------------------------------------------------------------- /values/webapp/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/webapp/demo-values.example.yaml -------------------------------------------------------------------------------- /values/webapp/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/webapp/prod-values.example.yaml -------------------------------------------------------------------------------- /values/wire-server/demo-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/wire-server/demo-secrets.example.yaml -------------------------------------------------------------------------------- /values/wire-server/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/wire-server/demo-values.example.yaml -------------------------------------------------------------------------------- /values/wire-server/prod-secrets.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/wire-server/prod-secrets.example.yaml -------------------------------------------------------------------------------- /values/wire-server/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/wire-server/prod-values.example.yaml -------------------------------------------------------------------------------- /values/wire-utility/demo-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/wire-utility/demo-values.example.yaml -------------------------------------------------------------------------------- /values/wire-utility/prod-values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server-deploy/HEAD/values/wire-utility/prod-values.example.yaml --------------------------------------------------------------------------------