mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 10:44:36 +01:00
63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: jobservice-rc
|
|
labels:
|
|
name: jobservice-rc
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
name: jobservice-apps
|
|
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
|