You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
No errors in reconciliation (especially when when deleting ingress)
WRR support in the ingress
Metrics, Log is not injected directiy into package. It goes through Reconciler object and is passed to other objects through constructor.
Reconciliation tests - completely rewritten into the mocks
Api over ingress. No reason to use client.Get()...
"k8gb.absa.oss/finalizer" - > "k8gb.io/finalizer"
ApiGateway support would be clearly done by Mapper interface implementation. (Currently we have ingress mapper implememnted, the Gateway + Routes would be another implementation)
Return one Status object via GetStatus() (status Status), containing getHealthStatus, getHealthyRecords. The functions doesn't retrieve any error now. as well as GetStatus(). It returns empty objects instead.
GetStatus() If Service can't be loaded in getHealthStatus, the record is UNHEALTHY, Before: error was generated commit
GetStatus() If corev1.Endpoint can't be loaded in getHealthStatus, the record is UNHEALTHY, Before: error was generated
TCP and UDP digs are separated strategies (brings easier local testing on colima), easy switch between UDP and TCP
In FO >2 clusters; When Primary cluster is killed, the first alphabetically sorted takes control and IPs only such cluster are returned. When first alphabetical is killed, second alphabetical takes control etc. CoreDNS of all living clusters always return same cluster IP.
missing
tests
terratests
investigate validations of ingress
cleanup Makefile
revisit CI/CD pipelines
Helm changes
documentation changes (diagrams has changed, documented text has changed)
Revisit lifecycle, when kill app on secondary cluster (in FO, RR)
Revisit /chart, deploy, config folders
Local Playground changes (no GSLB)
Remove ExternalDNSEndpoint when k8gb POD deleted(minimal ROI, endpoint will be removed togethet with k8gb namespace)
Because of cyrcular imports in mocks I must generate ONE redundant mock (ClientMock) into Mapper package
Mapper.SetReference() function sets *LoopState into Mapper. It breaks design because it exists and beause it is public. It needs to be public because of visibility in the Mocks. On the other hand, you don't need to touch it.
symlink_slice is symlink from controller utils into terratest utils. I want to avoid duplicates in the code, but at the same time I don't want to create a dependency on a shared package or release k8gb as a shared module. Thanks to symlink I share the code between two uncommitted applications in monorep and I have a single source of truth. It is the only one file that contains functions working with maps and slices.
The text was updated successfully, but these errors were encountered:
Changes
"k8gb.absa.oss/finalizer"
- >"k8gb.io/finalizer"
would be clearly done by Mapper interface implementation. (Currently we have ingress mapper implememnted, the Gateway + Routes would be another implementation)
Status
object viaGetStatus() (status Status)
, containinggetHealthStatus
,getHealthyRecords
. The functions doesn't retrieve any error now. as well asGetStatus()
. It returns empty objects instead.GetStatus()
If Service can't be loaded ingetHealthStatus
, the record isUNHEALTHY
, Before: error was generated commitGetStatus()
Ifcorev1.Endpoint
can't be loaded ingetHealthStatus
, the record isUNHEALTHY
, Before: error was generatedmissing
teststerratestsinvestigate validations of ingresscleanup MakefileRevisit lifecycle, when kill app on secondary cluster (in FO, RR)/chart
,deploy
,config
foldersRemove ExternalDNSEndpoint when k8gb POD deleted(minimal ROI, endpoint will be removed togethet with k8gb namespace)Critical
Remove ExternalDNSEndpoint when ingress annotation deletedFinalizer - only INFOBLOXNice to have
DNSEndpoint
living inmapper package
, move out DNSEndpoint from assistant.Three cluster terratestsdeploy-full-local-setup
killer
Hits
Design Breaks
Mapper.SetReference()
function sets*LoopState
intoMapper
. It breaks design because it exists and beause it is public. It needs to be public because of visibility in the Mocks. On the other hand, you don't need to touch it.The text was updated successfully, but these errors were encountered: