ci: add configuration for the proxy/mirror registry

This makes it possible to pull images from Docker Hub through the local
container image registry in the CI OpenShift deployment. The registry in
the CI is configured with the 'cephcsibot' account so that pulling
images is accounted towards the account, and not anonymous consumers
within the whole CentOS CI.

There should be no need to manually sync the images between the local
registry and Docker Hub anymore.

Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
Niels de Vos 2020-11-23 14:20:46 +01:00 committed by mergify[bot]
parent 6a7e6c841f
commit 5ae8fb7c9b
7 changed files with 75 additions and 17 deletions

17
container-registry.conf Normal file
View File

@ -0,0 +1,17 @@
# /etc/containers/registries.conf
#
# This file contains the registry that is hosted in the CentOS CI OpenShift
# deployment for Ceph-CSI.
#
# By overwriting /etc/containers/registries.conf, short-names for
# container-images can NOT be used anymore.
#
# The CI jobs do a "podman login" for the local registry. Only after that, the
# local mirror is accessible.
#
[[registry]]
prefix = "docker.io"
location = "docker.io"
[[registry.mirror]]
location = "registry-ceph-csi.apps.ocp.ci.centos.org"

View File

@ -19,6 +19,7 @@ def ssh(cmd) {
def podman_login(registry, username, passwd) {
ssh "podman login --authfile=~/.podman-auth.json --username=${username} --password='${passwd}' ${registry}"
ssh 'cp container-registry.conf /etc/containers/registries.conf'
}
def podman_pull(registry, image) {
@ -74,7 +75,7 @@ node('cico-workspace') {
try {
stage('prepare bare-metal machine') {
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh root@${CICO_NODE}:'
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh container-registry.conf root@${CICO_NODE}:'
// TODO: already checked out the PR on the node, scp the contents?
ssh "./prepare.sh --workdir=${workdir} --gitrepo=${git_repo} --ref=${ref}"
}
@ -128,7 +129,7 @@ node('cico-workspace') {
).trim()
// base_image is like ceph/ceph:v15
podman_pull(ci_registry, "${base_image}")
podman_pull("docker.io", "${base_image}")
}
}
}

View File

@ -49,6 +49,8 @@ spec:
volumeMounts:
- name: container-images
mountPath: /var/lib/registry
- name: config
mountPath: /etc/docker/registry
- name: htpasswd
mountPath: /auth
env:
@ -62,6 +64,9 @@ spec:
- name: container-images
persistentVolumeClaim:
claimName: ceph-csi-image-registry
- name: config
secret:
secretName: container-registry-config
- name: htpasswd
secret:
secretName: container-registry-auth

View File

@ -0,0 +1,32 @@
---
apiVersion: v1
kind: Secret
metadata:
name: container-registry-config
labels:
app: container-registry
stringData:
# /etc/docker/registry/config.yml
config.yml: |-
version: 0.1
log:
fields:
service: registry
storage:
cache:
blobdescriptor: inmemory
filesystem:
rootdirectory: /var/lib/registry
http:
addr: :5000
headers:
X-Content-Type-Options: [nosniff]
health:
storagedriver:
enabled: true
interval: 10s
threshold: 3
proxy:
remoteurl: https://docker.io
username: @@USERNAME@@
password: @@PASSWD@@

View File

@ -19,6 +19,7 @@ def ssh(cmd) {
def podman_login(registry, username, passwd) {
ssh "podman login --authfile=~/.podman-auth.json --username=${username} --password='${passwd}' ${registry}"
ssh 'cp container-registry.conf /etc/containers/registries.conf'
}
def podman_pull(registry, image) {
@ -103,7 +104,7 @@ node('cico-workspace') {
if (params.ghprbPullId != null) {
ref = "pull/${ghprbPullId}/merge"
}
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh ./podman2minikube.sh root@${CICO_NODE}:'
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh ./podman2minikube.sh container-registry.conf root@${CICO_NODE}:'
ssh "./prepare.sh --workdir=/opt/build/go/src/github.com/ceph/ceph-csi --gitrepo=${git_repo} --ref=${ref}"
}
stage('pull base container images') {
@ -117,7 +118,7 @@ node('cico-workspace') {
}
// base_image is like ceph/ceph:v15
podman_pull(ci_registry, "${base_image}")
podman_pull("docker.io", "${base_image}")
// cephcsi:devel is used with 'make containerized-build'
podman_pull(ci_registry, "ceph-csi:devel")
}
@ -135,7 +136,7 @@ node('cico-workspace') {
if (rook_version != '') {
// single-node-k8s.sh pushes the image into minikube
podman_pull(ci_registry, "rook/ceph:${rook_version}")
podman_pull("docker.io", "rook/ceph:${rook_version}")
}
timeout(time: 30, unit: 'MINUTES') {
@ -143,9 +144,9 @@ node('cico-workspace') {
}
// vault:latest and nginx:latest are used by the e2e tests
podman_pull(ci_registry, "vault:latest")
podman_pull("docker.io", "vault:latest")
ssh "./podman2minikube.sh vault:latest"
podman_pull(ci_registry, "nginx:latest")
podman_pull("docker.io", "nginx:latest")
ssh "./podman2minikube.sh nginx:latest"
}
stage('deploy ceph-csi through helm') {

View File

@ -16,6 +16,7 @@ def ssh(cmd) {
def podman_login(registry, username, passwd) {
ssh "podman login --authfile=~/.podman-auth.json --username=${username} --password='${passwd}' ${registry}"
ssh 'cp container-registry.conf /etc/containers/registries.conf'
}
def podman_pull(registry, image) {
@ -100,7 +101,7 @@ node('cico-workspace') {
if (params.ghprbPullId != null) {
ref = "pull/${ghprbPullId}/merge"
}
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh ./podman2minikube.sh root@${CICO_NODE}:'
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh ./podman2minikube.sh container-registry.conf root@${CICO_NODE}:'
ssh "./prepare.sh --workdir=/opt/build/go/src/github.com/ceph/ceph-csi --gitrepo=${git_repo} --ref=${ref}"
}
stage('pull base container images') {
@ -114,7 +115,7 @@ node('cico-workspace') {
}
// base_image is like ceph/ceph:v15
podman_pull(ci_registry, "${base_image}")
podman_pull("docker.io", "${base_image}")
// cephcsi:devel is used with 'make containerized-build'
podman_pull(ci_registry, "ceph-csi:devel")
}
@ -132,7 +133,7 @@ node('cico-workspace') {
if (rook_version != '') {
// single-node-k8s.sh pushes the image into minikube
podman_pull(ci_registry, "rook/ceph:${rook_version}")
podman_pull("docker.io", "rook/ceph:${rook_version}")
}
timeout(time: 30, unit: 'MINUTES') {
@ -140,9 +141,9 @@ node('cico-workspace') {
}
// vault:latest and nginx:latest are used by the e2e tests
podman_pull(ci_registry, "vault:latest")
podman_pull("docker.io", "vault:latest")
ssh "./podman2minikube.sh vault:latest"
podman_pull(ci_registry, "nginx:latest")
podman_pull("docker.io", "nginx:latest")
ssh "./podman2minikube.sh nginx:latest"
}
stage('run e2e') {

View File

@ -16,6 +16,7 @@ def ssh(cmd) {
def podman_login(registry, username, passwd) {
ssh "podman login --authfile=~/.podman-auth.json --username=${username} --password='${passwd}' ${registry}"
ssh 'cp container-registry.conf /etc/containers/registries.conf'
}
def podman_pull(registry, image) {
@ -100,7 +101,7 @@ node('cico-workspace') {
if (params.ghprbPullId != null) {
ref = "pull/${ghprbPullId}/merge"
}
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh ./podman2minikube.sh root@${CICO_NODE}:'
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh ./podman2minikube.sh container-registry.conf root@${CICO_NODE}:'
ssh "./prepare.sh --workdir=/opt/build/go/src/github.com/ceph/ceph-csi --gitrepo=${git_repo} --ref=${ref}"
}
stage('pull base container images') {
@ -114,7 +115,7 @@ node('cico-workspace') {
}
// base_image is like ceph/ceph:v15
podman_pull(ci_registry, "${base_image}")
podman_pull("docker.io", "${base_image}")
// cephcsi:devel is used with 'make containerized-build'
podman_pull(ci_registry, "ceph-csi:devel")
}
@ -132,7 +133,7 @@ node('cico-workspace') {
if (rook_version != '') {
// single-node-k8s.sh pushes the image into minikube
podman_pull(ci_registry, "rook/ceph:${rook_version}")
podman_pull("docker.io", "rook/ceph:${rook_version}")
}
timeout(time: 30, unit: 'MINUTES') {
@ -140,9 +141,9 @@ node('cico-workspace') {
}
// vault:latest and nginx:latest are used by the e2e tests
podman_pull(ci_registry, "vault:latest")
podman_pull("docker.io", "vault:latest")
ssh "./podman2minikube.sh vault:latest"
podman_pull(ci_registry, "nginx:latest")
podman_pull("docker.io", "nginx:latest")
ssh "./podman2minikube.sh nginx:latest"
}
stage("run ${test_type} upgrade tests") {