Use dockerhub for e2e and demo images (#10851)

This commit is contained in:
Ricardo Katz 2024-01-14 22:09:13 -03:00 committed by GitHub
parent 42627fb1bd
commit a9eb4dba40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 26 additions and 19 deletions

View file

@ -72,6 +72,7 @@ jobs:
uses: ./.github/workflows/zz-tmpl-images.yaml
with:
name: cfssl
secrets: inherit
custom-error-pages:
needs: changes
@ -80,6 +81,8 @@ jobs:
uses: ./.github/workflows/zz-tmpl-images.yaml
with:
name: custom-error-pages
secrets: inherit
e2e-test-echo:
needs: changes
@ -88,6 +91,7 @@ jobs:
uses: ./.github/workflows/zz-tmpl-images.yaml
with:
name: e2e-test-echo
secrets: inherit
ext-auth-example-authsvc:
needs: changes
@ -96,6 +100,7 @@ jobs:
uses: ./.github/workflows/zz-tmpl-images.yaml
with:
name: ext-auth-example-authsvc
secrets: inherit
fastcgi-helloserver:
needs: changes
@ -104,6 +109,7 @@ jobs:
uses: ./.github/workflows/zz-tmpl-images.yaml
with:
name: fastcgi-helloserver
secrets: inherit
go-grpc-greeter-server:
needs: changes
@ -112,6 +118,7 @@ jobs:
uses: ./.github/workflows/zz-tmpl-images.yaml
with:
name: go-grpc-greeter-server
secrets: inherit
httpbun:
needs: changes
@ -120,6 +127,7 @@ jobs:
uses: ./.github/workflows/zz-tmpl-images.yaml
with:
name: httpbun
secrets: inherit
kube-webhook-certgen:
runs-on: ubuntu-latest

View file

@ -1 +1 @@
v0.0.2
v0.0.3

View file

@ -23,4 +23,4 @@ RUN apk update \
EXPOSE 8888
CMD ["cfssl"]
CMD ["cfssl"]

View file

@ -1 +1 @@
v0.0.2
v0.0.3

View file

@ -35,4 +35,4 @@ COPY --from=builder /go/src/k8s.io/ingress-nginx/images/custom-error-pages/www /
COPY --from=builder /go/src/k8s.io/ingress-nginx/images/custom-error-pages/etc /etc
USER nonroot:nonroot
CMD ["/nginx-errors"]
CMD ["/nginx-errors"]

View file

@ -1 +1 @@
v0.0.2
v0.0.3

View file

@ -17,4 +17,4 @@ RUN wget -O /tmp/luarocks.tgz \
RUN luarocks install lua-resty-template
COPY nginx.conf /etc/nginx/nginx.conf
COPY nginx.conf /etc/nginx/nginx.conf

View file

@ -1 +1 @@
v0.0.2
v0.0.3

View file

@ -16,4 +16,4 @@ steps:
- -c
- |
gcloud auth configure-docker \
&& cd images/ && make NAME=ext-auth-example-authsvc push
&& cd images/ && make NAME=ext-auth-example-authsvc push

View file

@ -7,4 +7,4 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o authsvc authsvc.go
FROM gcr.io/distroless/base-debian11
COPY --from=builder /authsvc/authsvc /
EXPOSE 8080
ENTRYPOINT ["/authsvc"]
ENTRYPOINT ["/authsvc"]

View file

@ -1 +1 @@
v0.0.2
v0.0.3

View file

@ -14,5 +14,4 @@ steps:
- -c
- |
gcloud auth configure-docker \
&& cd images/ && make NAME=fastcgi-helloserver push
&& cd images/ && make NAME=fastcgi-helloserver push

View file

@ -29,4 +29,4 @@ FROM gcr.io/distroless/static:nonroot
COPY --from=builder /go/src/k8s.io/ingress-nginx/images/fastcgi/fastcgi-helloserver /
USER nonroot:nonroot
CMD ["/fastcgi-helloserver"]
CMD ["/fastcgi-helloserver"]

View file

@ -1 +1 @@
v0.0.2
v0.0.3

View file

@ -16,4 +16,4 @@ steps:
- -c
- |
gcloud auth configure-docker \
&& cd images/ && make NAME=go-grpc-greeter-server push
&& cd images/ && make NAME=go-grpc-greeter-server push

View file

@ -13,4 +13,4 @@ COPY --from=build /greeter-server /
EXPOSE 50051
CMD ["/greeter-server"]
CMD ["/greeter-server"]

View file

@ -1 +1 @@
v0.0.2
v0.0.3

View file

@ -16,4 +16,4 @@ steps:
- -c
- |
gcloud auth configure-docker \
&& cd images/ && make NAME=httpbun push
&& cd images/ && make NAME=httpbun push

View file

@ -31,4 +31,4 @@ FROM scratch
COPY --from=builder /go/httpbun/bin/httpbun httpbun
ENV HTTPBUN_BIND=0.0.0.0:80
EXPOSE 80
ENTRYPOINT ["/httpbun"]
ENTRYPOINT ["/httpbun"]