We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d382bc3 commit 103dae6Copy full SHA for 103dae6
images/test-runner/rootfs/Dockerfile
@@ -126,7 +126,13 @@ RUN apk update -U \
126
apk add yamllint
127
128
# Install Yamale YAML schema validator
129
-RUN pip install --user "yamale==$YAMALE_VERSION"
+# 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
136
137
LABEL org.opencontainers.image.source=https://github.com/kubernetes/ingress-nginx
138
0 commit comments