Skip to content
Open
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
6 changes: 3 additions & 3 deletions templates/jarvice-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ spec:
readinessProbe:
httpGet:
scheme: HTTP
port: http
port: 8080
path: /jarvice/ready
initialDelaySeconds: {{ .Values.jarvice_api.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.jarvice_api.readinessProbe.periodSeconds }}
Expand All @@ -128,7 +128,7 @@ spec:
livenessProbe:
httpGet:
scheme: HTTP
port: http
port: 8080
path: /jarvice/live
initialDelaySeconds: {{ .Values.jarvice_api.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.jarvice_api.livenessProbe.periodSeconds }}
Expand Down Expand Up @@ -212,7 +212,7 @@ spec:
{{- end }}
{{- end }}
- name: JARVICE_SCHED_URL
value: "https://jarvice-scheduler:9443"
value: "http://jarvice-scheduler:9443"
- name: JARVICE_JOBS_NAMESPACE
{{- if empty .Values.jarvice.JARVICE_JOBS_NAMESPACE }}
value: {{ .Release.Namespace }}-jobs
Expand Down
2 changes: 1 addition & 1 deletion templates/jarvice-dal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ spec:
- name: JARVICE_DAL_URL
value: http://localhost:8080
- name: JARVICE_SCHED_URL
value: "https://jarvice-scheduler:9443"
value: "http://jarvice-scheduler:9443"
- name: JARVICE_DEFAULT_CLUSTER_URL
{{- if empty .Values.jarvice.JARVICE_DEFAULT_CLUSTER_URL }}
{{- if .Values.jarvice_k8s_scheduler.enabled }}
Expand Down
2 changes: 1 addition & 1 deletion templates/jarvice-k8s-scheduler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ spec:
- name: JARVICE_DAL_URL
value: "http://jarvice-dal:8080"
- name: JARVICE_SCHED_URL
value: "https://jarvice-scheduler:9443"
value: "http://jarvice-scheduler:9443"
{{- end }}
- name: JARVICE_SCHED_SERVER_KEY
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion templates/jarvice-sched-pass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ spec:
{{- if (not (empty .Values.jarvice_sched_pass.env.JARVICE_SCHED_URL)) }}
value: "{{ .Values.jarvice_sched_pass.env.JARVICE_SCHED_URL }}"
{{- else }}
value: "https://jarvice-scheduler:9443"
value: "http://jarvice-scheduler:9443"
{{- end }}
- name: JARVICE_LICENSE_LIC
valueFrom:
Expand Down
6 changes: 3 additions & 3 deletions templates/jarvice-scheduler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ spec:
containerPort: 9443
readinessProbe:
httpGet:
scheme: HTTPS
scheme: HTTP
port: https
path: /ready
initialDelaySeconds: {{ .Values.jarvice_scheduler.readinessProbe.initialDelaySeconds }}
Expand All @@ -115,7 +115,7 @@ spec:
failureThreshold: {{ .Values.jarvice_scheduler.readinessProbe.failureThreshold }}
livenessProbe:
httpGet:
scheme: HTTPS
scheme: HTTP
port: https
path: /live
initialDelaySeconds: {{ .Values.jarvice_scheduler.livenessProbe.initialDelaySeconds }}
Expand Down Expand Up @@ -150,7 +150,7 @@ spec:
{{- if (not (empty .Values.jarvice_scheduler.env.JARVICE_SCHED_URL)) }}
value: "{{ .Values.jarvice_scheduler.env.JARVICE_SCHED_URL }}"
{{- else }}
value: "https://jarvice-scheduler:9443"
value: "http://jarvice-scheduler:9443"
{{- end }}
- name: JARVICE_LICENSE_LIC
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion templates/jarvice-slurm-scheduler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ spec:
- name: JARVICE_DAL_URL
value: "http://jarvice-dal:8080"
- name: JARVICE_SCHED_URL
value: "https://jarvice-scheduler:9443"
value: "http://jarvice-scheduler:9443"
{{- end }}
{{- if (not (empty .env.JARVICE_SCHED_SERVER_KEY)) }}
- name: JARVICE_SCHED_SERVER_KEY
Expand Down