2016-11-21 09:07:04 +01:00
|
|
|
apiVersion: v1
|
|
|
|
kind: ReplicationController
|
|
|
|
metadata:
|
|
|
|
name: registry-rc
|
|
|
|
labels:
|
|
|
|
name: registry-rc
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
name: registry-apps
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
name: registry-apps
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: registry-app
|
2017-09-25 11:25:16 +02:00
|
|
|
image: vmware/registry:2.6.2-photon
|
2016-11-21 09:07:04 +01:00
|
|
|
imagePullPolicy: IfNotPresent
|
|
|
|
ports:
|
|
|
|
- containerPort: 5000
|
|
|
|
- containerPort: 5001
|
|
|
|
volumeMounts:
|
|
|
|
- name: config
|
|
|
|
mountPath: /etc/docker/registry
|
|
|
|
- name: storage
|
|
|
|
mountPath: /storage
|
|
|
|
volumes:
|
|
|
|
- name: config
|
|
|
|
configMap:
|
|
|
|
name: harbor-registry-config
|
|
|
|
items:
|
|
|
|
- key: config
|
|
|
|
path: config.yml
|
|
|
|
- key: cert
|
|
|
|
path: root.crt
|
|
|
|
- name: storage
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: registry-pvc
|