forked from Cray-HPE/hms-smd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.locking-pkg.test.yaml
223 lines (222 loc) · 6.63 KB
/
docker-compose.locking-pkg.test.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# MIT License
#
# (C) Copyright [2022] Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
version: '3.7'
#THIS environment sets up HSM for locking package testing.
# All dependencies -> HSM (vault, hm-collector, kafka), RTS (red fish sims) are setup and active.
# The ports are exposed to the local system.
networks:
rez:
services:
# etcd:
# image: artifactory.algol60.net/quay.io/coreos/etcd:v3.4.7
# environment:
# - ALLOW_NONE_AUTHENTICATION=yes
# - ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379
# - ETCD_LISTEN_CLIENT_URLS=http://0.0.0.0:2379
# ports:
# - 2379:2379
# - 2380:2380
# networks:
# - rez
# s3:
# image: artifactory.algol60.net/docker.io-cache/minio/minio:latest
# hostname: s3
# environment:
# MINIO_ACCESS_KEY: s3-access-key
# MINIO_SECRET_KEY: s3-secret-key
# command: server /data
# ports:
# - "9000:9000"
# networks:
# - rez
# s3-init:
# image: artifactory.algol60.net/csm-docker/stable/minio/mc:latest
# hostname: s3-init
# environment:
# - MC_HOST_S3=http://s3-access-key:s3-secret-key@s3:9000
# command: mb S3/fw-update
# depends_on:
# - s3
# networks:
# - rez
vault:
hostname: vault
image: artifactory.algol60.net/docker.io/library/vault:1.5.5
environment:
- VAULT_DEV_ROOT_TOKEN_ID=hms
- VAULT_DEV_LISTEN_ADDRESS=0.0.0.0:8200
- VAULT_ADDR=http://127.0.0.1:8200
ports:
- "8200:8200"
cap_add:
- IPC_LOCK
networks:
- rez
vault-kv-enabler:
image: artifactory.algol60.net/csm-docker/stable/vault-kv-enabler:1.13.4
environment:
- VAULT_ADDR=http://vault:8200
- VAULT_TOKEN=hms
- KV_STORES=hms-creds
depends_on:
- vault
networks:
- rez
redis:
image: artifactory.algol60.net/docker.io/library/redis:5.0-alpine3.12
hostname: hms-redfish-redis
ports:
- "6379:6379"
networks:
- rez
hmsds-postgres:
hostname: hmsds-postgres
image: artifactory.algol60.net/docker.io/library/postgres:11-alpine
environment:
- POSTGRES_PASSWORD=hmsdsuser
- POSTGRES_USER=hmsdsuser
- POSTGRES_DB=hmsds
ports:
- "5432:5432"
networks:
- rez
cray-smd-init:
build:
context: .
dockerfile: Dockerfile
command: [ "smd-init" ]
entrypoint: [ "/entrypoint.sh" ]
environment:
- SMD_DBHOST=hmsds-postgres
volumes:
- /persistent_migrations
depends_on:
- hmsds-postgres
networks:
- rez
cray-smd:
build:
context: .
dockerfile: Dockerfile
#image: artifactory.algol60.net/csm-docker/stable/cray-smd:1.30.11
environment:
- POSTGRES_HOST=hmsds-postgres
- POSTGRES_PORT=5432
- RF_MSG_HOST=kafka:9092:cray-dmtf-resource-event
- CRAY_VAULT_AUTH_PATH=auth/token/create
- CRAY_VAULT_ROLE_FILE=configs/namespace
- CRAY_VAULT_JWT_FILE=configs/token
- VAULT_ADDR=http://vault:8200
- VAULT_TOKEN=hms
- VAULT_KEYPATH=hms-creds
- SMD_WVAULT=true
- SMD_RVAULT=true
hostname: cray-smd
depends_on:
- cray-smd-init
- vault
ports:
- "27779:27779"
networks:
- rez
zookeeper:
image: artifactory.algol60.net/docker.io/confluentinc/cp-zookeeper:6.1.1
hostname: zookeeper
ports:
- "2181:2181"
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
networks:
- rez
kafka:
image: artifactory.algol60.net/docker.io/confluentinc/cp-kafka:6.1.1
hostname: kafka
depends_on:
- zookeeper
ports:
- "9092:9092"
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
networks:
- rez
cray-hms-hmcollector:
image: artifactory.algol60.net/csm-docker/stable/hms-hmcollector:2.20.0
environment:
- LOG_LEVEL=TRACE
- SM_URL=http://cray-smd:27779
- POLLING_ENABLED=false
- RF_SUBSCRIBE_ENABLED=false
- REST_PORT=80
- VAULT_TOKEN=hms
- CRAY_VAULT_JWT_FILE=configs/token
- CRAY_VAULT_ROLE_FILE=configs/namespace
- CRAY_VAULT_AUTH_PATH=auth/token/create
- VAULT_ADDR=http://vault:8200
volumes:
- ./configs/kafka_brokers.json:/configs/kafka_brokers.json
- ./configs/namespace:/configs/namespace
- ./configs/token:/configs/token
networks:
- rez
redfish-simulator:
image: artifactory.algol60.net/csm-docker/stable/hms-redfish-translation-service:1.19.0
environment:
- SCHEMA_VERSION=2019.1
- LOG_LEVEL=TRACE
- PRIVILEGE_REGISTRY_VERSION=1.0.4
- SCRIPT_DIR_PREFIX=/tmp/redfish
- VAULT_TOKEN=hms
- REDIS_HOSTNAME=redis
- REDIS_PORT=6379
- VAULT_ADDR=http://vault:8200
- CRAY_VAULT_JWT_FILE=configs/token
- CRAY_VAULT_ROLE_FILE=configs/namespace
- CRAY_VAULT_AUTH_PATH=auth/token/create
- HTTPS_CERT=configs/rts.crt
- HTTPS_KEY=configs/rts.key
- BACKEND_HELPER=RFSimulator
- PERIODIC_SLEEP=120
- COLLECTOR_URL=http://cray-hms-hmcollector
- HSM_URL=http://cray-smd:27779
- HMS_VAULT_KEYPATH=hms-creds
- RF_USERNAME=root
- RF_PASSWORD=********
- RF_SIMULATOR_XNAMES=x0c0s1b0,x0c0s2b0
- LOGLEVEL=4
ports:
- "8082:8082"
- "8083:8083"
depends_on:
- redis
- vault
- cray-smd
networks:
rez:
aliases:
- x0c0s1b0
- x0c0s2b0