質問編集履歴
2
deployments.yamlの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -216,6 +216,56 @@
|
|
216
216
|
|
217
217
|
```
|
218
218
|
|
219
|
+
Deployments.yaml
|
220
|
+
|
221
|
+
```
|
222
|
+
|
223
|
+
apiVersion: apps/v1
|
224
|
+
|
225
|
+
kind: Deployment
|
226
|
+
|
227
|
+
metadata:
|
228
|
+
|
229
|
+
labels:
|
230
|
+
|
231
|
+
run: discordbot
|
232
|
+
|
233
|
+
name: discordbot
|
234
|
+
|
235
|
+
spec:
|
236
|
+
|
237
|
+
replicas: 1
|
238
|
+
|
239
|
+
selector:
|
240
|
+
|
241
|
+
matchLabels:
|
242
|
+
|
243
|
+
run: discordbot
|
244
|
+
|
245
|
+
template:
|
246
|
+
|
247
|
+
metadata:
|
248
|
+
|
249
|
+
creationTimestamp: null
|
250
|
+
|
251
|
+
labels:
|
252
|
+
|
253
|
+
run: discordbot
|
254
|
+
|
255
|
+
spec:
|
256
|
+
|
257
|
+
containers:
|
258
|
+
|
259
|
+
- image: XXX/XXX:XXX
|
260
|
+
|
261
|
+
name: discordbot
|
262
|
+
|
263
|
+
imagePullSecrets:
|
264
|
+
|
265
|
+
- name: regcred
|
266
|
+
|
267
|
+
```
|
268
|
+
|
219
269
|
|
220
270
|
|
221
271
|
### 試したこと
|
1
コンテナ内のGlibcのバージョン
test
CHANGED
File without changes
|
test
CHANGED
@@ -244,6 +244,20 @@
|
|
244
244
|
|
245
245
|
|
246
246
|
|
247
|
+
root@e15b9b712ff9:/# ldd --version
|
248
|
+
|
249
|
+
ldd (Debian GLIBC 2.24-11+deb9u4) 2.24
|
250
|
+
|
251
|
+
Copyright (C) 2016 Free Software Foundation, Inc.
|
252
|
+
|
253
|
+
This is free software; see the source for copying conditions. There is NO
|
254
|
+
|
255
|
+
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
256
|
+
|
257
|
+
Written by Roland McGrath and Ulrich Drepper.
|
258
|
+
|
259
|
+
|
260
|
+
|
247
261
|
[Keyv](https://www.npmjs.com/package/keyv)
|
248
262
|
|
249
263
|
[Keyv-sqlite](https://github.com/lukechilds/keyv-sqlite)
|