mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
28 lines
704 B
YAML
28 lines
704 B
YAML
---
|
|
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nitro-backend
|
|
namespace: human-connection
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: nitro-db-migration-worker
|
|
image: humanconnection/db-migration-worker:latest
|
|
imagePullPolicy: Always
|
|
envFrom:
|
|
- configMapRef:
|
|
name: db-migration-worker
|
|
volumeMounts:
|
|
- name: secret-volume
|
|
readOnly: false
|
|
mountPath: /root/.ssh
|
|
- name: uploads
|
|
mountPath: /uploads/
|
|
volumes:
|
|
- name: secret-volume
|
|
secret:
|
|
secretName: ssh-keys
|
|
defaultMode: 0400
|