blob: 5fddd221d166415cba63d5fe5e3883c8c23d44f3 [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 Naser2144b342022-05-23 10:25:31 -040013
Mohammed Naser956d49c2022-04-29 11:20:05 -040014# .. envvar:: keepalived_enabled [[[
15#
16# Enable Keepalived for the Atmosphere cluster. You can disable this if you
17# are forwarding ports directly into the cluster from an external network.
18keepalived_enabled: true
okozachenko85a31332022-04-11 23:34:30 +100019
Mohammed Naser956d49c2022-04-29 11:20:05 -040020 # ]]]
okozachenko85a31332022-04-11 23:34:30 +100021# .. envvar:: keepalived_password [[[
22#
23# Keepalived password
24keepalived_password: "{{ undef(hint='You must specify a Keepalived password') }}"
25
26 # ]]]
27# .. envvar:: keepalived_vip [[[
28#
29# Keepalived virtual IP address
30keepalived_vip: "{{ undef(hint='You must specify a Keepalived virtual IP address') }}"
31
32 # ]]]
33# .. envvar:: keepalived_interface [[[
34#
35# Keepalived virtual IP interface
36keepalived_interface: "{{ undef(hint='You must specify a Keepalived virtual IP interface') }}"
37
38 # ]]]
39# .. envvar:: keepalived_image_repository [[[
40#
41# Keepalived container image repository location
42keepalived_image_repository: "{{ atmosphere_image_repository | default('us-docker.pkg.dev/vexxhost-infra/openstack') }}"
43
44 # ]]]
45# .. envvar:: keepalived_image_tag [[[
46#
47# Keepalived container image tag
48keepalived_image_tag: 2.0.19
49
50 # ]]]
51# .. envvar:: keepalived_vrid [[[
52#
53# Keepalived virtual router id
54keepalived_vrid: 51
55
56 # ]]]