Skip to content

Commit

Permalink
Merge pull request #685 from spack/update-python-dependencies
Browse files Browse the repository at this point in the history
Pin python version for failing cron jobs
  • Loading branch information
mvandenburgh authored Oct 25, 2023
2 parents 3732abf + 994d556 commit cbac55a
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/custom_docker_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
- docker-image: ./images/gh-gl-sync
image-tags: ghcr.io/spack/ci-bridge:0.0.38
- docker-image: ./images/gitlab-api-scrape
image-tags: ghcr.io/spack/gitlab-api-scrape:0.0.2
image-tags: ghcr.io/spack/gitlab-api-scrape:0.0.3
- docker-image: ./images/ci-key-rotate
image-tags: ghcr.io/spack/ci-key-rotate:0.0.4
image-tags: ghcr.io/spack/ci-key-rotate:0.0.5
- docker-image: ./images/ci-key-clear
image-tags: ghcr.io/spack/ci-key-clear:0.0.1
image-tags: ghcr.io/spack/ci-key-clear:0.0.2
- docker-image: ./images/gitlab-stuckpods
image-tags: ghcr.io/spack/stuckpods:0.0.1
- docker-image: ./images/gitlab-clear-pipelines
Expand All @@ -42,7 +42,7 @@ jobs:
- docker-image: ./images/upload-gitlab-failure-logs
image-tags: ghcr.io/spack/upload-gitlab-failure-logs:0.0.3
- docker-image: ./images/snapshot-release-tags
image-tags: ghcr.io/spack/snapshot-release-tags:0.0.3
image-tags: ghcr.io/spack/snapshot-release-tags:0.0.4
- docker-image: ./images/cache-indexer
image-tags: ghcr.io/spack/cache-indexer:0.0.3
- docker-image: ./images/build-timing-processor
Expand Down
2 changes: 1 addition & 1 deletion images/ci-key-clear/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.11

WORKDIR /scripts/
COPY requirements.txt ./
Expand Down
2 changes: 1 addition & 1 deletion images/ci-key-rotate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.11

WORKDIR /scripts/
COPY requirements.txt ./
Expand Down
2 changes: 1 addition & 1 deletion images/gitlab-api-scrape/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.11

WORKDIR /scripts/
COPY requirements.txt ./
Expand Down
2 changes: 1 addition & 1 deletion k8s/production/custom/gitlab-api-scrape/cron-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
restartPolicy: Never
containers:
- name: scrape
image: ghcr.io/spack/gitlab-api-scrape:0.0.2
image: ghcr.io/spack/gitlab-api-scrape:0.0.3
imagePullPolicy: IfNotPresent
env:
- name: GITLAB_PRIVATE_TOKEN
Expand Down
4 changes: 2 additions & 2 deletions k8s/production/custom/rotate-keys/cron-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
restartPolicy: Never
containers:
- name: rotate-gitlab-aws-access-keys
image: ghcr.io/spack/ci-key-rotate:0.0.4
image: ghcr.io/spack/ci-key-rotate:0.0.5
imagePullPolicy: IfNotPresent
env:
- name: GITLAB_TOKEN
Expand All @@ -41,7 +41,7 @@ spec:
restartPolicy: Never
containers:
- name: clear-admin-keys
image: ghcr.io/spack/ci-key-clear:0.0.1
image: ghcr.io/spack/ci-key-clear:0.0.2
imagePullPolicy: IfNotPresent
nodeSelector:
spack.io/node-pool: base
2 changes: 1 addition & 1 deletion k8s/production/custom/snapshot-release-tags/cron-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
restartPolicy: Never
containers:
- name: snapshot-release-tags
image: ghcr.io/spack/snapshot-release-tags:0.0.3
image: ghcr.io/spack/snapshot-release-tags:0.0.4
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down

0 comments on commit cbac55a

Please sign in to comment.