Skip to content

Commit

Permalink
Merge pull request #592 from fmount/tpconditions
Browse files Browse the repository at this point in the history
Add Topology common condition messages
  • Loading branch information
stuggi authored Jan 20, 2025
2 parents 01a8948 + 7894738 commit 4bcef17
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions modules/common/condition/conditions.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ const (

// TLSInputReadyCondition Status=True condition when required TLS sources are ready
TLSInputReadyCondition Type = "TLSInputReady"

// TopologyReadyCondition Status=True condition that indicates a CR
// exists and is referenced by the Service
TopologyReadyCondition Type = "TopologyReady"
)

// Common Reasons used by API objects.
Expand Down Expand Up @@ -344,6 +348,16 @@ const (

// TLSInputErrorMessage - Provides the message when there's error in provision of TLS sources
TLSInputErrorMessage = "TLSInput error occured in TLS sources %s"

//
// Topology condition messages
//
// TopologyReadyInitMessage
TopologyReadyInitMessage = "Topology config create not started"
// TopologyReadyMessage
TopologyReadyMessage = "Topology config create completed"
// TopologyReadyErrorMessage
TopologyReadyErrorMessage = "Topology config create error occurred %s"
)

// Common Messages used for service accounts, roles, role bindings
Expand Down

0 comments on commit 4bcef17

Please sign in to comment.