blob: 90a349167a35ef27957ed82b425248f07c9403c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
apiVersion: v1
kind: Pod
spec:
containers:
- name: centos7-rpmbuild
image: registry.gitlab.com/kraxel/rpm-package-builder:centos7
imagePullPolicy: Always
env:
- name: "CENTOS_MIRROR"
value: "http://spunk.home.kraxel.org/centos/"
- name: "EPEL_MIRROR"
value: "http://spunk.home.kraxel.org/epel/"
tty: true
command: [ "/bin/sh", "-c", "/usr/local/bin/configure-mirror && cat" ]
|