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

fix: change MinIO endpoint, add missing env vars to k8s deployment #30

Merged
merged 1 commit into from
Mar 19, 2024
Merged
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
14 changes: 12 additions & 2 deletions k8s/node-result-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ spec:
spec:
containers:
- name: node-result-service
image: ghcr.io/privateaim/node-result-service:sha-b75b067
image: ghcr.io/privateaim/node-result-service:sha-7740b53
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
name: http-result-srv
env:
- name: MINIO__ENDPOINT
value: local-minio
value: local-minio-service:9000
- name: MINIO__ACCESS_KEY
value: admin
- name: MINIO__SECRET_KEY
Expand All @@ -30,6 +30,16 @@ spec:
value: "false"
- name: MINIO__BUCKET
value: flame
- name: HUB__AUTH_USERNAME
value: your_hub_username_here
- name: HUB__AUTH_PASSWORD
value: your_hub_password_here
- name: OIDC__CERTS_URL
value: http://keycloak:8080/bla/bla
# Change this to "1" for testing purposes. This will cause the value of OIDC__CERTS_URL to be
# ignored. You will still need to set this variable for the service to start up correctly.
- name: OIDC__SKIP_JWT_VALIDATION
value: "0"
startupProbe:
httpGet:
path: /healthz
Expand Down