summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_peer_discovery_k8s/priv/schema/rabbitmq_peer_discovery_k8s.schema
blob: 6c21b6cceaec3369bdf2302d41c2a3853dce57d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
%%
%% Copyright (c) 2007-2020 VMware, Inc. or its affiliates.  All rights reserved.
%%

%% Kubernetes host

{mapping, "cluster_formation.k8s.host", "rabbit.cluster_formation.peer_discovery_k8s.k8s_host", [
    {datatype, string}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_host",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.host", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.

%% Kubernetes port

{mapping, "cluster_formation.k8s.port", "rabbit.cluster_formation.peer_discovery_k8s.k8s_port", [
    {datatype, integer},
    {validators, ["non_negative_integer"]}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_port",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.port", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.

%% Kubernetes URI scheme

{mapping, "cluster_formation.k8s.scheme", "rabbit.cluster_formation.peer_discovery_k8s.k8s_scheme", [
    {datatype, string}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_scheme",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.scheme", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.

%% (ACL) Token path

{mapping, "cluster_formation.k8s.token_path", "rabbit.cluster_formation.peer_discovery_k8s.k8s_token_path", [
    {datatype, string}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_token_path",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.token_path", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.

%% Certificate path

{mapping, "cluster_formation.k8s.cert_path", "rabbit.cluster_formation.peer_discovery_k8s.k8s_cert_path", [
    {datatype, string}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_cert_path",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.cert_path", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.

%% Namespace path

{mapping, "cluster_formation.k8s.namespace_path", "rabbit.cluster_formation.peer_discovery_k8s.k8s_namespace_path", [
    {datatype, string}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_namespace_path",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.namespace_path", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.

%% Service name

{mapping, "cluster_formation.k8s.service_name", "rabbit.cluster_formation.peer_discovery_k8s.k8s_service_name", [
    {datatype, string}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_service_name",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.service_name", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.

%% Address type

{mapping, "cluster_formation.k8s.address_type", "rabbit.cluster_formation.peer_discovery_k8s.k8s_address_type", [
    {datatype, {enum, [hostname, ip]}}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_address_type",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.address_type", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.

%% Hostname suffix

{mapping, "cluster_formation.k8s.hostname_suffix", "rabbit.cluster_formation.peer_discovery_k8s.k8s_hostname_suffix", [
    {datatype, string}
]}.

{translation, "rabbit.cluster_formation.peer_discovery_k8s.k8s_hostname_suffix",
fun(Conf) ->
    case cuttlefish:conf_get("cluster_formation.k8s.hostname_suffix", Conf, undefined) of
        undefined -> cuttlefish:unset();
        Value     -> Value
    end
end}.