mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-03 09:09:47 +01:00
61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: jobservice
|
|
labels:
|
|
name: jobservice
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: jobservice-apps
|
|
spec:
|
|
containers:
|
|
- name: jobservice-app
|
|
image: vmware/harbor-jobservice:v1.2.0
|
|
imagePullPolicy: IfNotPresent
|
|
env:
|
|
- name: UI_SECRET
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: harbor-jobservice-config
|
|
key: UI_SECRET
|
|
- name: JOBSERVICE_SECRET
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: harbor-jobservice-config
|
|
key: JOBSERVICE_SECRET
|
|
- name: CONFIG_PATH
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: harbor-jobservice-config
|
|
key: CONFIG_PATH
|
|
- name: LOG_LEVEL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: harbor-jobservice-config
|
|
key: LOG_LEVEL
|
|
- name: GODEBUG
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: harbor-jobservice-config
|
|
key: GODEBUG
|
|
ports:
|
|
- containerPort: 80
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /etc/jobservice
|
|
- name: logs
|
|
mountPath: /var/log/jobs
|
|
volumes:
|
|
- name: config
|
|
configMap:
|
|
name: harbor-jobservice-config
|
|
items:
|
|
- key: config
|
|
path: app.conf
|
|
- name: logs
|
|
persistentVolumeClaim:
|
|
claimName: log-pvc
|