Skip to content

Commit

Permalink
fix: change MinIO endpoint, add missing env vars to k8s deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
mjugl committed Mar 19, 2024
1 parent 7740b53 commit 612ecea
Showing 1 changed file with 12 additions and 2 deletions.
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

0 comments on commit 612ecea

Please sign in to comment.