We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dba4dcb commit b037e45Copy full SHA for b037e45
pkg/deployment/resources/pod_creator.go
@@ -65,6 +65,9 @@ func versionHasAdvertisedEndpoint(v driver.Version) bool {
65
return v.CompareTo("3.4.0") >= 0
66
}
67
68
+// versionHasJWTSecretKeyfile derives from the version number of arangod has
69
+// the option --auth.jwt-secret-keyfile which can take the JWT secret from
70
+// a file in the file system.
71
func versionHasJWTSecretKeyfile(v driver.Version) bool {
72
if v.CompareTo("3.3.22") >= 0 && v.CompareTo("3.4.0") < 0 {
73
return true
0 commit comments