Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test image build #461

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion images/jobber/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3.20.0

RUN apk --no-cache add curl jq

WORKDIR /opt/mediawiki
2 changes: 1 addition & 1 deletion images/nbserve/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ubuntu:24.04

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand Down
1 change: 1 addition & 0 deletions images/paws-hub/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM jupyterhub/k8s-hub:3.3.8

ARG NB_USER=tools.paws
ARG NB_UID=52771
ARG HOME=/home/paws
Expand Down
2 changes: 1 addition & 1 deletion images/renderer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ubuntu:24.04

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \
python3-pip \
Expand Down
2 changes: 1 addition & 1 deletion images/singleuser/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ubuntu:24.04

ENV PYWIKIBOT_VERSION=9.5.0
ENV EDITOR=/bin/nano
ENV PYWIKIBOT_DIR=/srv/paws
Expand Down
10 changes: 5 additions & 5 deletions paws/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pawspublic:
nbserve:
image:
name: quay.io/wikimedia-paws-prod/nbserve
tag: pr-419 # nbserve tag managed by github actions
tag: pr-461 # nbserve tag managed by github actions
# pawspublic.nbserve.image.template safely defines image:tag name in yaml
template: "{{ .Values.pawspublic.nbserve.image.name}}:{{.Values.pawspublic.nbserve.image.tag }}"
replicas: 1
Expand All @@ -15,7 +15,7 @@ pawspublic:
renderer:
image:
name: quay.io/wikimedia-paws-prod/renderer
tag: pr-418 # renderer tag managed by github actions
tag: pr-461 # renderer tag managed by github actions
# pawspublic.nbserve.image.template safely defines image:tag name in yaml
template: "{{ .Values.pawspublic.renderer.image.name}}:{{.Values.pawspublic.renderer.image.tag }}"
requests:
Expand Down Expand Up @@ -254,7 +254,7 @@ jupyterhub:
fsGroup: 52771
image:
name: quay.io/wikimedia-paws-prod/paws-hub
tag: pr-448 # paws-hub tag managed by github actions
tag: pr-461 # paws-hub tag managed by github actions
containerSecurityContext:
runAsUser: 52771
resources:
Expand All @@ -280,7 +280,7 @@ jupyterhub:
fsGid: 52771
image:
name: quay.io/wikimedia-paws-prod/singleuser
tag: pr-459 # singleuser tag managed by github actions
tag: pr-461 # singleuser tag managed by github actions
pullPolicy: Always
memory:
guarantee: 0.70G
Expand Down Expand Up @@ -316,6 +316,6 @@ localdev:
enabled: true
image:
name: quay.io/wikimedia-paws-prod/jobber
tag: pr-420 # jobber tag managed by github actions
tag: pr-461 # jobber tag managed by github actions
# mediawikiHacks.image.template safely defines image:tag name in yaml
template: "{{ .Values.localdev.image.name}}:{{.Values.localdev.image.tag }}"
Loading