Closed kieron-dev closed 3 years ago
In the CRD, status looks like:
status: type: object properties: replicas: type: integer instances: type: array items: type: object properties: since: type: integer format: uint64 index: type: integer format: uint32 state: type: string enum: - Pending - Running - Failed default: Pending exitStatus: type: integer format: uint32 exitReason: type: string crashCount: type: integer format: uint64 crashTimestamp: type: integer format: uint64
whereas in eirini, it is:
type LRPStatus struct { Replicas int32 `json:"replicas"` }
These should be in sync, and preferably automatically in sync.
In the CRD, status looks like:
whereas in eirini, it is:
These should be in sync, and preferably automatically in sync.