Skip to content

Commit

Permalink
fix: typo in GlitchTipVeleroSecret
Browse files Browse the repository at this point in the history
That commit fixes an infamous error that that the opartor was not able
to watch the v1/secrets endpoint

Signed-off-by: Philip Miglinci <pmig@glasskube.eu>
  • Loading branch information
pmig committed Dec 18, 2023
1 parent 34df302 commit 7850bd4
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package eu.glasskube.operator.apps.glitchtip.dependent

import eu.glasskube.operator.apps.gitea.Gitea
import eu.glasskube.operator.apps.glitchtip.Glitchtip
import eu.glasskube.operator.generic.dependent.backups.BackupSpecNotNullCondition
import eu.glasskube.operator.generic.dependent.backups.DependentVeleroSecret
Expand All @@ -9,6 +8,6 @@ import io.javaoperatorsdk.operator.processing.dependent.kubernetes.KubernetesDep

@KubernetesDependent(resourceDiscriminator = GlitchtipVeleroSecret.Discriminator::class)
class GlitchtipVeleroSecret : DependentVeleroSecret<Glitchtip>() {
internal class ReconcilePrecondition : BackupSpecNotNullCondition<Secret, Gitea>()
internal class ReconcilePrecondition : BackupSpecNotNullCondition<Secret, Glitchtip>()
internal class Discriminator : DependentVeleroSecret.Discriminator<Glitchtip>()
}

0 comments on commit 7850bd4

Please sign in to comment.