Skip to content

Commit

Permalink
run tests with http
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <[email protected]>
  • Loading branch information
vsoch committed Sep 11, 2024
1 parent 2812d0d commit 1fd65f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ helm install \
--set controller.pullPolicy=Never \
--set scheduler.pullPolicy=Never \
--set scheduler.sidecarPullPolicy=Never \
--set scheduler.httpScheme=HTTP \
schedscheduler-plugins as-a-second-scheduler/

# These containers should already be loaded into minikube
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ spec:
httpGet:
path: /healthz
port: 10259
scheme: HTTPS
scheme: {{ .Values.scheduler.httpScheme }}
initialDelaySeconds: 15
name: scheduler-plugins-scheduler
readinessProbe:
httpGet:
path: /healthz
port: 10259
scheme: HTTPS
scheme: {{ .Values.scheduler.httpScheme }}
resources:
requests:
cpu: '0.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ scheduler:
pullPolicy: Always
sidecarPullPolicy: Always
loggingLevel: "9"
httpScheme: HTTPS

# Port is for GRPC, and enabling the external service will also
# create the service and ingress to it, along with adding
Expand Down

0 comments on commit 1fd65f2

Please sign in to comment.