Skip to content
Open
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
8 changes: 8 additions & 0 deletions cli/k8s_client/yaml_factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -1131,13 +1131,15 @@ spec:
- "--disable_audit_log={DISABLE_AUDIT_LOG}"
- "--http_request_timeout={HTTP_REQUEST_TIMEOUT}"
- "--https_rest"
- "--https_address=[::1]"
- "--https_port={PROBE_PORT}"
- "--enable_force_detach={FORCE_DETACH_BOOL}"
- "--iscsi_self_healing_interval={ISCSI_SELF_HEALING_INTERVAL}"
- "--iscsi_self_healing_wait_time={ISCSI_SELF_HEALING_WAIT_TIME}"
{DEBUG}
startupProbe:
httpGet:
host: localhost
path: /liveness
scheme: HTTPS
port: {PROBE_PORT}
Comment on lines 1141 to 1145
Expand All @@ -1146,6 +1148,7 @@ spec:
periodSeconds: 10
livenessProbe:
httpGet:
host: localhost
path: /liveness
scheme: HTTPS
port: {PROBE_PORT}
Comment on lines 1150 to 1154
Expand All @@ -1154,6 +1157,7 @@ spec:
periodSeconds: 10
readinessProbe:
httpGet:
host: localhost
path: /readiness
scheme: HTTPS
port: {PROBE_PORT}
Comment on lines 1159 to 1163
Expand Down Expand Up @@ -1328,6 +1332,7 @@ spec:
- "--disable_audit_log={DISABLE_AUDIT_LOG}"
- "--http_request_timeout={HTTP_REQUEST_TIMEOUT}"
- "--https_rest"
- "--https_address=127.0.0.1"
- "--https_port={PROBE_PORT}"
{DEBUG}
# Windows requires named ports for it to actually bind
Expand All @@ -1337,6 +1342,7 @@ spec:
protocol: TCP
startupProbe:
httpGet:
host: localhost
path: /liveness
scheme: HTTPS
port: healthz
Comment on lines 1344 to 1348
Expand All @@ -1345,6 +1351,7 @@ spec:
periodSeconds: 10
livenessProbe:
httpGet:
host: localhost
path: /liveness
scheme: HTTPS
port: healthz
Comment on lines 1353 to 1357
Expand All @@ -1353,6 +1360,7 @@ spec:
periodSeconds: 10
readinessProbe:
httpGet:
host: localhost
path: /readiness
scheme: HTTPS
port: healthz
Comment on lines 1362 to 1366
Expand Down