Skip to content

Commit 103dae6

Browse files
authored
changed yamale install from pip to manual download & install (#10886)
1 parent d382bc3 commit 103dae6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

images/test-runner/rootfs/Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,13 @@ RUN apk update -U \
126126
apk add yamllint
127127

128128
# Install Yamale YAML schema validator
129-
RUN pip install --user "yamale==$YAMALE_VERSION"
129+
# Commenting pip install yamale because broken cloudbuild https://github.com/kubernetes/ingress-nginx/pull/10885
130+
# RUN pip install --user "yamale==$YAMALE_VERSION"
131+
RUN wget https://github.com/23andMe/Yamale/archive/master.zip \
132+
&& unzip -d /tmp master.zip \
133+
&& cd /tmp/Yamale-master \
134+
&& python setup.py install \
135+
&& yamale -V
130136

131137
LABEL org.opencontainers.image.source=https://github.com/kubernetes/ingress-nginx
132138

0 commit comments

Comments
 (0)