mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
This makes for easier tab-completion, and also is a bit more explicit about the expected consumer.
21 lines
591 B
Puppet
21 lines
591 B
Puppet
class kandra::profile::chat_zulip_org inherits kandra::profile::base {
|
|
include zulip::profile::standalone
|
|
include zulip::postfix_localmail
|
|
include zulip::hooks::sentry
|
|
|
|
include kandra::app_frontend_monitoring
|
|
include kandra::prometheus::redis
|
|
include kandra::prometheus::postgresql
|
|
kandra::firewall_allow { 'smokescreen_metrics': port => '9810' }
|
|
kandra::firewall_allow { 'http': }
|
|
kandra::firewall_allow { 'https': }
|
|
kandra::firewall_allow { 'smtp': }
|
|
|
|
Kandra::User_Dotfiles['root'] {
|
|
keys => false,
|
|
}
|
|
Kandra::User_Dotfiles['zulip'] {
|
|
keys => false,
|
|
}
|
|
}
|