Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Escape European project @ CC
xcache-config
Commits
42cb8d4c
Commit
42cb8d4c
authored
Feb 02, 2021
by
MUSSET Paul
Browse files
only built xrootd5 images
parent
966e347e
Pipeline
#102014
passed with stage
in 6 minutes and 16 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
90 deletions
+3
-90
.gitlab-ci.yml
.gitlab-ci.yml
+3
-15
containers/images/xcache/Dockerfile
containers/images/xcache/Dockerfile
+0
-0
containers/images/xcache/stable/Dockerfile
containers/images/xcache/stable/Dockerfile
+0
-68
containers/images/xcache/stable/xrootd-stable-slc7.repo
containers/images/xcache/stable/xrootd-stable-slc7.repo
+0
-7
No files found.
.gitlab-ci.yml
View file @
42cb8d4c
...
...
@@ -12,29 +12,17 @@ stages:
-
echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
-
/kaniko/executor --context "$CI_PROJECT_DIR/$DIRECTORY" --dockerfile "$CI_PROJECT_DIR/$DIRECTORY/Dockerfile" --destination "$CI_REGISTRY_IMAGE/$IMAGE_NAME"
build_xcache
_stable
:
build_xcache
:
extends
:
-
.build
stage
:
build
variables
:
DIRECTORY
:
containers/images/xcache/
stable
DIRECTORY
:
containers/images/xcache/
IMAGE_NAME
:
xcache_stable:${CI_COMMIT_REF_SLUG}
rules
:
-
if
:
'
$CI_COMMIT_BRANCH
!=
"master"'
changes
:
-
containers/images/xcache/stable/Dockerfile
build_xcache_testing
:
extends
:
-
.build
stage
:
build
variables
:
DIRECTORY
:
containers/images/xcache/testing
IMAGE_NAME
:
xcache_testing:${CI_COMMIT_REF_SLUG}
rules
:
-
if
:
'
$CI_COMMIT_BRANCH
!=
"master"'
changes
:
-
containers/images/xcache/stable/Dockerfile
-
containers/images/xcache/Dockerfile
build_xcache_master
:
extends
:
...
...
containers/images/xcache/
testing/
Dockerfile
→
containers/images/xcache/Dockerfile
View file @
42cb8d4c
File moved
containers/images/xcache/stable/Dockerfile
deleted
100644 → 0
View file @
966e347e
# XCache image
FROM
centos:7
ARG
xrootdversion=4.12.5
COPY
xrootd-stable-slc7.repo /etc/yum.repos.d/xrootd-stable-slc7.repo
RUN
yum
install
--nogpg
-y
epel-release
\
&&
yum
install
--nogpg
-y
xrootd-server-
${
xrootdversion
}
# Have the predefined uid/gid for xrootd to enable easy access to volumes
RUN
xrootd_uid
=
$(
id
-u
xrootd
)
\
&&
xrootd_gid
=
$(
id
-g
xrootd
)
\
&&
groupmod
-g
9999 xrootd
\
&&
usermod
-u
9998 xrootd
\
&&
find /
-group
${
xrootd_gid
}
-user
${
xrootd_gid
}
-type
d
-execdir
chown
xrootd:xrootd
{}
\;
# Config directory
RUN
mkdir
-p
/etc/xrootd/
\
&&
chown
xrootd:xrootd /etc/xrootd
# Directory keeping the namespace
RUN
mkdir
-p
/mnt/xcache/ns/
\
&&
chown
xrootd:xrootd /mnt/xcache/ns/
# Directory keeping the metadata
RUN
mkdir
-p
/mnt/xcache/metadata/
\
&&
chown
xrootd:xrootd /mnt/xcache/metadata/
# Directory to mount the data disks. need to have same uid+gid on host and container
RUN
mkdir
-p
/mnt/xcache/storage
\
&&
chown
xrootd:xrootd /mnt/xcache/storage/
# For now checking crl is disabled in xcache config file
# Might have to be later to be put in a volume. with a container spawning every n hours doing the fetch crl
# install ca certificates
ADD
http://repository.egi.eu/sw/production/cas/1/current/repo-files/EGI-trustanchors.repo /etc/yum.repos.d/EGI-trustanchors.repo
RUN
yum
install
--nogpg
-y
ca-policy-lcg
# Certificates directory
RUN
mkdir
/etc/grid-security/xrd/
\
&&
chown
xrootd:xrootd /etc/grid-security/xrd/
# Steps for certificates authentication
# Get VOMS Files
ADD
https://indigo-iam.github.io/escape-docs/voms-config/voms-escape.cloud.cnaf.infn.it.vomses /etc/vomses/
ADD
https://indigo-iam.github.io/escape-docs/voms-config/voms-escape.cloud.cnaf.infn.it.lsc /etc/grid-security/vomsdir/escape/
RUN
chmod
644 /etc/vomses/voms-escape.cloud.cnaf.infn.it.vomses /etc/grid-security/vomsdir/escape/voms-escape.cloud.cnaf.infn.it.lsc
# Install the VO info extractor
RUN
yum
install
--nogpg
-y
xrootd-voms-
${
xrootdversion
}
ENV
X509_USER_PROXY=/tmp/proxy-certificate/certificate
RUN
mkdir
-p
/tmp/proxy-certificate
\
&&
chown
xrootd:xrootd /tmp/proxy-certificate
# HTTP xroot client library
RUN
yum
install
--nogpg
-y
xrdcl-http-
${
xrootdversion
}
\
&&
rm
-rf
/etc/xrootd
# problem with xrdcl-http not looking /etc/grid-security
RUN
cp
/etc/grid-security/certificates/
*
.pem /etc/pki/ca-trust/source/anchors/
\
&&
update-ca-trust extract
RUN
yum clean all
USER
xrootd:xrootd
CMD
["xrootd","-d","-c","/etc/xrootd/xcache-config.cfg","-n","xcache"]
containers/images/xcache/stable/xrootd-stable-slc7.repo
deleted
100644 → 0
View file @
966e347e
[xrootd-stable]
name=XRootD Stable repository
baseurl=http://xrootd.org/binaries/stable/slc/7/$basearch http://xrootd.cern.ch/sw/repos/stable/slc/7/$basearch
gpgcheck=1
enabled=1
protect=0
gpgkey=http://xrootd.cern.ch/sw/releases/RPM-GPG-KEY.txt
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment