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

trying base image with temurin #71

Merged
merged 2 commits into from
Aug 14, 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
4 changes: 2 additions & 2 deletions charts/nr-metabase/templates/metabase/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /
path: /api/health
port: http
initialDelaySeconds: 120
periodSeconds: 5
timeoutSeconds: 3
failureThreshold: 30
readinessProbe:
httpGet:
path: /
path: /api/health
port: http
initialDelaySeconds: 10
periodSeconds: 5
Expand Down
2 changes: 1 addition & 1 deletion charts/nr-metabase/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ metabase:
# the below is for renovate to keep pushing PRs, so that it keeps getting updated.
metabaseImage:
repository: metabase/metabase
tag: v0.50.19
tag: v0.50.20
containerPort: 3000
environment: production
service:
Expand Down
2 changes: 1 addition & 1 deletion metabase/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#This Dockerfile mounts the certs
FROM docker.io/openjdk:21-jdk-slim-bullseye
FROM eclipse-temurin:21
WORKDIR /app
COPY ojdbc8-full /app/plugins/
ARG METABASE_VERSION
Expand Down
Loading