Skip to content

Commit c65c8d9

Browse files
authored
[Bugfix] Fix ArangoSync Liveness Probe (#786)
1 parent ddb5623 commit c65c8d9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
44
- Update UBI Image to 8.4
5+
- Fix ArangoSync Liveness Prove
56

67
## [1.2.2](https://github.com/arangodb/kube-arangodb/tree/1.2.2) (2021-09-09)
78
- Update 'github.com/arangodb/arangosync-client' dependency to v0.7.0

pkg/deployment/resources/pod_creator_probes.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ func (r *Resources) probeBuilderLivenessSync(spec api.DeploymentSpec, group api.
375375
}
376376
return &probes.HTTPProbeConfig{
377377
LocalPath: "/_api/version",
378-
Secure: spec.IsSecure(),
378+
Secure: spec.Sync.TLS.IsSecure(),
379379
Authorization: authorization,
380380
Port: port,
381381
}, nil

0 commit comments

Comments
 (0)