Skip to content

Commit be3c01b

Browse files
authored
Merge pull request #1192 from PokeAPI/update-ci
Update ci deps
2 parents 9923154 + 7f43c61 commit be3c01b

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
command: make build-db
4545
deploy:
4646
machine:
47-
image: ubuntu-2204:2023.10.1
47+
image: ubuntu-2204:2024.11.1
4848
resource_class: large
4949
steps:
5050
- checkout

.github/workflows/docker-k8s.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Lint k8s
6767
run: (cd Resources/k8s/kustomize && yamllint .)
6868
- name: Create k8s Kind Cluster
69-
uses: helm/kind-action@v1.10.0
69+
uses: helm/kind-action@v1.12.0
7070
with:
7171
cluster_name: pokeapi
7272
version: v0.21.0

Resources/k8s/kustomize/base/deployments/graphql-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
done;
2626
containers:
2727
- name: graphql-engine
28-
image: hasura/graphql-engine:v2.36.4
28+
image: hasura/graphql-engine:v2.45.1
2929
ports:
3030
- containerPort: 8080
3131
env:

Resources/k8s/kustomize/base/deployments/haproxy-ingress-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
serviceAccountName: ingress-controller
1717
containers:
1818
- name: haproxy-ingress-controller
19-
image: quay.io/jcmoraisjr/haproxy-ingress:v0.14.0
19+
image: quay.io/jcmoraisjr/haproxy-ingress:v0.14.7
2020
resources:
2121
limits:
2222
memory: "256Mi"

Resources/k8s/kustomize/base/deployments/pokeapi-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
initContainers:
1818
- name: postgres-connection-checker
19-
image: postgres:15.1-alpine
19+
image: postgres:17.2-alpine3.21
2020
command: ['sh', '-c']
2121
args:
2222
- until pg_isready -h postgresql -p 5432; do

Resources/k8s/kustomize/base/deployments/postgres-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: postgresql
19-
image: postgres:15.1-alpine
19+
image: postgres:17.2-alpine3.21
2020
ports:
2121
- containerPort: 5432
2222
env:

Resources/k8s/kustomize/base/deployments/redis-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: redis
19-
image: redis:7.0.7-alpine
19+
image: redis:7.4.2-alpine3.21
2020
ports:
2121
- containerPort: 6379
2222
resources: {}

Resources/k8s/kustomize/base/jobs/load-graphql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
command: ["sh", "-c"]
3434
args:
3535
- apt-get update && apt-get install -y curl git &&
36-
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.36.4 bash &&
36+
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.45.1 bash &&
3737
cd /tmp &&
3838
git clone https://github.com/PokeAPI/pokeapi.git &&
3939
cd pokeapi &&

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
version: '2.4'
22
services:
33
cache:
4-
image: redis:7.2.3-alpine
4+
image: redis:7.4.2-alpine3.21
55
volumes:
66
- redis_data:/data
77
restart: always
88

99
db:
10-
image: postgres:16.1
10+
image: postgres:17.2-alpine3.21
1111
environment:
1212
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-pokemon}
1313
POSTGRES_USER: ${POSTGRES_USER:-ash}
@@ -40,7 +40,7 @@ services:
4040
restart: always
4141

4242
web:
43-
image: nginx:1.25.3-alpine
43+
image: nginx:1.27.3-alpine3.20
4444
ports:
4545
- "80:80"
4646
- "443:443"
@@ -51,7 +51,7 @@ services:
5151
- ./Resources/nginx/ssl:/ssl:ro
5252
- graphql_cache:/tmp/cache
5353
graphql-engine:
54-
image: hasura/graphql-engine:v2.36.4
54+
image: hasura/graphql-engine:v2.45.1
5555
ports:
5656
- "8080:8080"
5757
depends_on:

0 commit comments

Comments
 (0)