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
* add target for "make protos"
* add --build flag to tail
* refactor LogType as a bitfield
* Partition Build Logs from Service Logs (#766)
* partition aws and do build logs
* support both BUILD and RUN logs
* refactor to use bitfiled LogType
* remove obsolete comment
* aws byoc: use service name instead of container name for kaniko
* make the linter happy
* LogType implements pflag.Value
// Tail CD, kaniko, and all services (this requires ProjectName to be set)
780
-
kanikoTail:= ecs.LogGroupInput{LogGroupARN: b.makeLogGroupARN(b.stackDir(projectName, "builds"))} // must match logic in ecs/common.ts; TODO: filter by etag/service
servicesTail:= ecs.LogGroupInput{LogGroupARN: b.makeLogGroupARN(b.stackDir(projectName, "logs")), LogStreamNamePrefix: serviceLogsPrefix} // must match logic in ecs/common.ts
ecsTail:= ecs.LogGroupInput{LogGroupARN: b.makeLogGroupARN(b.stackDir(projectName, "ecs"))} // must match logic in ecs/common.ts; TODO: filter by etag/service/deploymentId
term.Debug("Query CD logs", cdTail.LogGroupARN, cdTail.LogStreamNames)
791
+
kanikoTail:= ecs.LogGroupInput{LogGroupARN: b.makeLogGroupARN(b.stackDir(projectName, "builds"))} // must match logic in ecs/common.ts; TODO: filter by etag/service
ecsTail:= ecs.LogGroupInput{LogGroupARN: b.makeLogGroupARN(b.stackDir(projectName, "ecs"))} // must match logic in ecs/common.ts; TODO: filter by etag/service/deploymentId
servicesTail:= ecs.LogGroupInput{LogGroupARN: b.makeLogGroupARN(b.stackDir(projectName, "logs")), LogStreamNamePrefix: serviceLogsPrefix} // must match logic in ecs/common.ts
0 commit comments