blob: 9ee7cff9677e3f7651fd3e563785e2d81c49638e [file] [log] [blame]
okozachenko85a31332022-04-11 23:34:30 +10001---
2# .. vim: foldmarker=[[[,]]]:foldmethod=marker
3
4# .. Copyright (C) 2022 VEXXHOST, Inc.
5# .. SPDX-License-Identifier: Apache-2.0
6
7# Default variables
8# =================
9
10# .. contents:: Sections
11# :local:
12
Mohammed Naser956d49c2022-04-29 11:20:05 -040013# .. envvar:: keepalived_enabled [[[
14#
15# Enable Keepalived for the Atmosphere cluster. You can disable this if you
16# are forwarding ports directly into the cluster from an external network.
17keepalived_enabled: true
okozachenko85a31332022-04-11 23:34:30 +100018
Mohammed Naser956d49c2022-04-29 11:20:05 -040019 # ]]]
okozachenko85a31332022-04-11 23:34:30 +100020# .. envvar:: keepalived_password [[[
21#
22# Keepalived password
23keepalived_password: "{{ undef(hint='You must specify a Keepalived password') }}"
24
25 # ]]]
26# .. envvar:: keepalived_vip [[[
27#
28# Keepalived virtual IP address
29keepalived_vip: "{{ undef(hint='You must specify a Keepalived virtual IP address') }}"
30
31 # ]]]
32# .. envvar:: keepalived_interface [[[
33#
34# Keepalived virtual IP interface
35keepalived_interface: "{{ undef(hint='You must specify a Keepalived virtual IP interface') }}"
36
37 # ]]]
38# .. envvar:: keepalived_image_repository [[[
39#
40# Keepalived container image repository location
41keepalived_image_repository: "{{ atmosphere_image_repository | default('us-docker.pkg.dev/vexxhost-infra/openstack') }}"
42
43 # ]]]
44# .. envvar:: keepalived_image_tag [[[
45#
46# Keepalived container image tag
47keepalived_image_tag: 2.0.19
48
49 # ]]]
50# .. envvar:: keepalived_vrid [[[
51#
52# Keepalived virtual router id
53keepalived_vrid: 51
54
55 # ]]]