Skip to content

Commit

Permalink
Merge pull request #62 from FINTLabs/chore/remove-unused-dependentRes…
Browse files Browse the repository at this point in the history
…ourceStatus-from-FlaisApplicationStatus

FLA-511 Remove dependetResourceStatus from status
  • Loading branch information
murillio4 authored Oct 19, 2024
2 parents 926042c + 5a51a5f commit 94192e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,10 @@ spec:
properties:
correlationId:
type: "string"
dependentResourceStatus:
items:
dependentErrors:
additionalProperties:
type: "string"
type: "array"
type: "object"
observedGeneration:
type: "integer"
state:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ import io.javaoperatorsdk.operator.api.ObservedGenerationAwareStatus
data class FlaisApplicationStatus(
val state: FlaisApplicationState = FlaisApplicationState.PENDING,
val correlationId: String? = null,
val dependentResourceStatus: List<String> = emptyList(),
val dependentErrors: Map<String, String>? = null
) : ObservedGenerationAwareStatus()

0 comments on commit 94192e7

Please sign in to comment.