@@ -14,6 +14,7 @@ docker_client_root: "{{ secrets_root }}/docker-client/"
1414config_maps_path : " {{ opts_root }}/configMaps"
1515services_path : " {{ opts_root }}/services"
1616deployments_path : " {{ opts_root }}/deployments"
17+ jobs_path : " {{ opts_root }}/jobs"
1718cron_jobs_path : " {{ opts_root }}/crons"
1819volumes_path : " {{ opts_root }}/volumes"
1920daemon_sets_path : " {{ opts_root }}/daemonSets"
@@ -75,6 +76,8 @@ api_port: 80
7576api_socket_server_hostname : apisock.{{ domain }}
7677api_socket_server_rollbar_key : cad27f265e8e473c9b293615e7ed0f3a
7778api_url : https://{{ api_hostname }}
79+ api_mongo_user : api
80+ api_mongo_auth : " {{ api_mongo_user }}:{{ api_mongo_password }}"
7881sendgrid_key : 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
7982
8083# arithmancy
@@ -99,10 +102,13 @@ charon_port: 53
99102clio_host_address : clio
100103clio_port : 8008
101104clio_mongo_database : clio
105+ clio_mongo_user : clio
106+ clio_mongo_auth : " {{ clio_mongo_user }}:{{ clio_mongo_password }}"
102107
103108# consul
104109consul_api_port : 8500
105110consul_https_port : 8501
111+ consul_storage_size_gb : 10
106112
107113# cream
108114cream_port : 8899
@@ -172,9 +178,13 @@ marketing_url: https://{{ domain }}
172178# metabase
173179metabase_port : 3000
174180
181+ # mongo
182+ mongo_storage_size_gb : 50
183+
175184# navi
176185navi_host_address : navi
177186navi_http_port : 3567
187+ navi_mongo_hosts : " mongo"
178188navi_rollbar_token : 719269e87b9b42848472542a8b2059ae
179189
180190# node_exporter
@@ -192,8 +202,12 @@ palantiri_rollbar_token: ed971bbca9ea44a29268afc606ab8c7d
192202pheidi_email_github_token : 115b4d854e34e8a5ba99ab73eefe4bf7a8944d6d
193203pheidi_rollbar_token : 6fc422ac645441bea7f6f14853eb01ab
194204
205+ # postgres
206+ postgres_storage_size_gb : 50
207+
195208# prometheus
196209prometheus_port : 9090
210+ prometheus_storage_size_gb : 100
197211prometheus_aws_access_key : AKIAIFG37NSI6O2QMRRQ
198212prometheus_aws_secret_key : 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
199213
@@ -204,10 +218,12 @@ prometheus_alert_url: http://prometheus-alerts:{{ prometheus_alert_port }}
204218# rabbit
205219rabbit_host_address : rabbitmq
206220rabbit_port : 5672
221+ rabbit_storage_size_gb : 50
207222
208223# redis
209224redis_host_address : redis
210225redis_port : 6379
226+ redis_storage_size_gb : 50
211227
212228# sauron
213229sauron_rollbar_token : 83157ae2d50d4b6398e404c0b9978d26
@@ -228,6 +244,9 @@ swarm_container_name: swarm
228244# navi/link
229245link_hello_runnable_token : 5d8f7029d3d6941b0fc62a7eb8c605d8e0bc7c29
230246navi_mongo_database : navi
247+ navi_mongo_user : " navi"
248+ navi_mongo_auth : " {{ navi_mongo_user }}:{{ navi_mongo_password }}"
249+ navi_mongo_hosts : " {{ mongo_hosts }}"
231250
232251npm_token : c0c4b32a-3de5-4e27-9d32-56c1616746d8
233252
@@ -241,6 +260,7 @@ user_vault_host_address: user-vault
241260# local-vault
242261vault_local_port : 31836
243262vault_addr : http://127.0.0.1:{{ vault_local_port }}
263+ vault_consul_address : " consul.{{ domain }}"
244264
245265# userland
246266userland_host_address : userland
0 commit comments