add model-service-minio
This commit is contained in:
parent
664568470c
commit
ae2e3eea78
83
model-minio.yml
Normal file
83
model-minio.yml
Normal file
@ -0,0 +1,83 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: model-minio
|
||||
namespace: birbnetes
|
||||
spec:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
- port: 9000
|
||||
targetPort: 9000
|
||||
protocol: TCP
|
||||
selector:
|
||||
app: model-minio
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: birbnetes-nfs-model-minio
|
||||
namespace: birbnetes
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 10Gi
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: model-minio
|
||||
labels:
|
||||
app: model-minio
|
||||
namespace: birbnetes
|
||||
data:
|
||||
MINIO_ACCESS_KEY: "birbnetes-model-minio-access"
|
||||
MINIO_SECRET_KEY: "birbnetes-model-supersecret"
|
||||
--
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: moedl-minio
|
||||
namespace: birbnetes
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: model-minio
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: model-minio
|
||||
spec:
|
||||
volumes:
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: birbnetes-nfs-model-minio
|
||||
containers:
|
||||
- name: model-minio
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: "/data"
|
||||
image: minio/minio:RELEASE.2020-03-25T07-03-04Z
|
||||
args:
|
||||
- server
|
||||
- /data
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: model-minio
|
||||
ports:
|
||||
- containerPort: 9000
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /minio/health/ready
|
||||
port: 9000
|
||||
initialDelaySeconds: 120
|
||||
periodSeconds: 20
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /minio/health/live
|
||||
port: 9000
|
||||
initialDelaySeconds: 120
|
||||
periodSeconds: 20
|
Loading…
Reference in New Issue
Block a user