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

Bump Passenger up to 6.0.23 #48

Merged
merged 1 commit into from
Sep 22, 2024
Merged
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
7 changes: 6 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@ jobs:
- 6.0.20
steps:
- uses: actions/checkout@v4
- uses: helm/kind-action@v1.5.0
- uses: helm/kind-action@v1
with:
cluster_name: kind
- run: |
kind version
kubectl cluster-info
kubectl get nodes -o wide

- name: Kind Load Image
run: |
docker build -t passenger-go-exporter:test .
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/passenger-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
strategy:
matrix:
passenger-version:
- 6.0.18
- 6.0.19
- 6.0.20
- 6.0.21
- 6.0.22
- 6.0.23
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
16 changes: 8 additions & 8 deletions test/kubernetes/example/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
bases:
- ../base
resources:
- ../base
images:
- name: example
newName: ghcr.io/rakutentech/passenger-go-exporter/passenger-app
newTag: 6.0.14
- name: passenger-exporter
newName: ghcr.io/rakutentech/passenger-go-exporter
newTag: v1.2.3
- name: example
newName: ghcr.io/rakutentech/passenger-go-exporter/passenger-app
newTag: 6.0.23
- name: passenger-exporter
newName: ghcr.io/rakutentech/passenger-go-exporter
newTag: v1.2.3
16 changes: 8 additions & 8 deletions test/kubernetes/test/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bases:
- ../base
resources:
- ../base
namespace: test
patchesJson6902:
- target:
Expand All @@ -9,9 +9,9 @@ patchesJson6902:
name: example
path: patch.yaml
images:
- name: example
newName: ghcr.io/rakutentech/passenger-go-exporter/passenger-app
newTag: 6.0.13
- name: passenger-exporter
newName: passenger-go-exporter
newTag: test
- name: example
newName: ghcr.io/rakutentech/passenger-go-exporter/passenger-app
newTag: 6.0.13
- name: passenger-exporter
newName: passenger-go-exporter
newTag: test
4 changes: 2 additions & 2 deletions test/passenger-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ruby:3.3

ARG ARG_RAILS_VERSION=7.0.8
ARG ARG_PASSENGER_VERSION=6.0.20
ARG ARG_RAILS_VERSION=7.2.1
ARG ARG_PASSENGER_VERSION=6.0.23
ENV RAILS_VERSION $ARG_RAILS_VERSION
ENV PASSENGER_VERSION $ARG_PASSENGER_VERSION

Expand Down
Loading