Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Commits
830a4874
Commit
830a4874
authored
3 years ago
by
Benedikt Wetzel
Browse files
Options
Downloads
Patches
Plain Diff
delete file / clean up
parent
69b28381
No related branches found
No related tags found
4 merge requests
!159
Re-implementation of Theodolite with Kotlin/Quarkus
,
!157
Update Graal Image in CI pipeline
,
!142
Rewrite operator to use k8s states
,
!83
WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/LeaderElector.kt
+0
-44
0 additions, 44 deletions
...ain/kotlin/theodolite/execution/operator/LeaderElector.kt
with
0 additions
and
44 deletions
theodolite-quarkus/src/main/kotlin/theodolite/execution/operator/LeaderElector.kt
deleted
100644 → 0
+
0
−
44
View file @
69b28381
package
theodolite.execution.operator
import
io.fabric8.kubernetes.client.DefaultKubernetesClient
import
io.fabric8.kubernetes.client.NamespacedKubernetesClient
import
io.fabric8.kubernetes.client.extended.leaderelection.LeaderCallbacks
import
io.fabric8.kubernetes.client.extended.leaderelection.LeaderElectionConfigBuilder
import
io.fabric8.kubernetes.client.extended.leaderelection.resourcelock.LeaseLock
import
mu.KotlinLogging
import
java.time.Duration
import
java.util.*
import
kotlin.reflect.KFunction0
import
kotlin.reflect.KFunction1
private
val
logger
=
KotlinLogging
.
logger
{}
class
LeaderElector
(
val
client
:
NamespacedKubernetesClient
,
val
name
:
String
)
{
fun
getLeadership
(
leader
:
KFunction1
<
NamespacedKubernetesClient
,
Unit
>)
{
val
lockIdentity
:
String
=
UUID
.
randomUUID
().
toString
()
DefaultKubernetesClient
().
use
{
kc
->
kc
.
leaderElector
()
.
withConfig
(
LeaderElectionConfigBuilder
()
.
withName
(
"Theodolite"
)
.
withLeaseDuration
(
Duration
.
ofSeconds
(
15L
))
.
withLock
(
LeaseLock
(
client
.
namespace
,
name
,
lockIdentity
))
.
withRenewDeadline
(
Duration
.
ofSeconds
(
10L
))
.
withRetryPeriod
(
Duration
.
ofSeconds
(
2L
))
.
withLeaderCallbacks
(
LeaderCallbacks
(
leader
,
{
logger
.
info
{
"STOPPED LEADERSHIP "
}
}
)
{
newLeader
:
String
?
->
logger
.
info
{
"New leader elected $newLeader"
}
})
.
build
()
)
.
build
().
run
()
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment