-
Notifications
You must be signed in to change notification settings - Fork 3
/
values.yaml
202 lines (201 loc) · 5.11 KB
/
values.yaml
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# dwv references are using the datawave-helm-chart repo resources unless otherwise indicated
global:
services:
# use embedded configuration service
configuration: ingest-configuration
# use embedded rabbitmq
rabbitmq: ingest-rabbitmq
# use dwv zookeeper
zookeeper: zookeeper
secrets:
accumulo:
name: accumulo
username: username
password: password
keystore:
name: keystore
alias: alias
path: path
password: password
truststore:
name: truststore
path: path
password: password
volumes:
pki:
name: pki
destination: /data/certs
readOnly: true
source:
type: secret
name: datawave-certificates-secret
hadoop:
name: hadoop
destination: /etc/hadoop/conf
readOnly: true
source:
type: configmap
# use dwv hadoop config
name: dwv-hadoop-config
logs:
name: logs
destination: /logs
source:
type: hostPath
path: /srv/logs
datawave:
name: datawave-conf
destination: /etc/datawave/conf
source:
type: pvc
claim: datawave-ingest-config-pvc
readOnly: true
output:
name: output
destination: /output
prefix: "file://"
source:
type: hostPath
path: /srv/data/datawave/ingest/
input:
name: input
destination: /input
source:
type: hostPath
path: /srv/data/datawave/ingest/
config:
name: application-configs
destination: /microservice-config
readOnly: true
source:
type: configmap
name: application-configs-configmap
rabbit:
name: rabbit
destination: /etc/rabbitmq/
readOnly: true
source:
type: configmap
name: rabbit-configmap
# Feeder definition
feeder:
image:
# minikube registry
registry: "localhost:5000/"
feeds:
- name: "mycsv-live"
# spring profiles to apply
profile: "dwv,dwv-mycsv"
queue: "live"
- name: "myjson-live"
# spring profiles to appl
profile: "dwv,dwv-myjson"
queue: "live"
env:
- name: HADOOP_USER_NAME
value: datawave
# Ingest definition
ingest:
# setup hdfs directories for the feeder
initContainers:
- name: "create-ingest-mycsv"
env:
- name: HADOOP_USER_NAME
value: datawave
image:
registry: ghcr.io/
repository: nationalsecurityagency/datawave-stack-hadoop
tag: 3.3.6
cmd: ["/bin/bash", "-c", "hadoop fs -mkdir -p hdfs:///datawave/ingest/mycsv"]
volumes:
- name: hadoop
destination: /etc/hadoop/conf
readOnly: true
source:
type: configmap
name: dwv-hadoop
- name: "create-ingest-myjson"
env:
- name: HADOOP_USER_NAME
value: datawave
image:
registry: ghcr.io/
repository: nationalsecurityagency/datawave-stack-hadoop
tag: 3.3.6
cmd: ["/bin/bash", "-c", "hadoop fs -mkdir -p hdfs:///datawave/ingest/myjson"]
volumes:
- name: hadoop
destination: /etc/hadoop/conf
readOnly: true
source:
type: configmap
name: dwv-hadoop
image:
# minikube registry
registry: "localhost:5000/"
pools:
# ingest pool name
- name: "live"
# rabbitmq queue to read off of
queue: "live"
# number of replicas in the pool
replicas: 1
# spring profiles to apply to this pool
profiles: "dwv,dwv-live"
imagePullSecrets:
- name: dockerconfigjson-ghcr
env:
- name: HADOOP_USER_NAME
value: datawave
- name: DATAWAVE_INGEST_HOME
value: /etc/datawave/conf
# Bundler definitions
bundler:
# true if the bundler is being used
enabled: false
# if a secret is necessary for bootstrapping define it here.
#### FOR TESTING ONLY. DO NOT USE IN PRODUCTION ####
secrets:
accumulo:
# accumulo secret name
name: accumulo
# accumulo username value
username: root
# password defined in dwv-helm-chart not secure, do not use for anything but local testing
password: ThisP@ssw0rd1sBANANAS
keystore:
name: keystore
alias: "1"
password: changeme
path: "file:///data/certs/keystore.p12"
truststore:
name: truststore
password: ChangeIt
path: "file:///data/certs/truststore.jks"
pki:
name: datawave-certificates-secret
dir: example-certs
# if configuration is necessary for bootstrapping define it here, specify another named configuration service in global.services.configuration
# configuration.name and messaging.name should match global.services.configuration and global.services.rabbitmq if enabled
configuration:
enabled: true
name: ingest-configuration
dir: example-config
port: 8888
replicaCount: 1
image:
registry: "ghcr.io/"
repository: nationalsecurityagency/datawave-config-service
pullPolicy: IfNotPresent
tag: 4.0.1
messaging:
enabled: true
name: ingest-rabbitmq
replicaCount: 1
image:
repository: rabbitmq
pullPolicy: IfNotPresent
tag: 3.11.4-alpine
ports:
amqp: 5672
mgmt: 15672