File tree 3 files changed +7
-4
lines changed
testsuite/resources/performance
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM quay.io/centos/centos:stream
1
+ FROM quay.io/centos/centos:stream9
2
2
LABEL description="Run Kuadrant integration tests \
3
3
Default ENTRYPOINT: 'make' and CMD: 'test' \
4
4
Bind dynaconf settings to /opt/secrets.yaml \
5
5
Bind kubeconfig to /opt/kubeconfig \
6
6
Bind a dir to /test-run-results to get reports "
7
7
8
- RUN useradd --no-log-init -u 1001 -r -U -m testsuite
9
- RUN dnf install -y python3.9 make git && dnf clean all
8
+ RUN useradd --no-log-init -u 1001 -g root -m testsuite
9
+ RUN dnf install -y python3 pip make git && dnf clean all
10
10
11
11
RUN curl https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable/openshift-client-linux.tar.gz >/tmp/oc.tgz && \
12
12
tar xzf /tmp/oc.tgz -C /usr/local/bin && \
13
13
rm /tmp/oc.tgz
14
14
15
+ RUN curl -L https://github.com/cloudflare/cfssl/releases/download/v1.6.3/cfssl_1.6.3_linux_amd64 >/usr/bin/cfssl && \
16
+ chmod +x /usr/bin/cfssl
17
+
15
18
RUN python3 -m pip --no-cache-dir install pipenv
16
19
17
20
WORKDIR /opt/workdir/kuadrant-testsuite
@@ -21,7 +24,7 @@ COPY . .
21
24
RUN mkdir -m 0700 /test-run-results && chown testsuite /test-run-results && \
22
25
chown testsuite -R /opt/workdir/*
23
26
24
- USER 1001
27
+ USER testsuite
25
28
26
29
27
30
ENV KUBECONFIG=/run/kubeconfig \
You can’t perform that action at this time.
0 commit comments