ikedam

Results 18 issues of ikedam

Multiple log files can be sorted with `sort` if "time" key comes first. For example: ``` $ cat node1.log nod2.log node3.log | sort {"time":"2022-08-06T08:02:01Z","level":"info","node":"node1","message":"foo"} {"time":"2022-08-06T08:02:12Z","level":"info","node":"node2","message":"bar"} {"time":"2022-08-06T08:03:03Z","level":"info","node":"node1","message":"bar"} {"time":"2022-08-06T08:03:10Z","level":"info","node":"node3","message":"bar"} ... ``` It...

gitmask squashes all commits into one commit with the message "anonymous commit" by ghost. Though it removes identifications completely, it also loses much information in the change. Commit messages are...

Though it looks expected to have opt/git-2.4.3.tar expanded when deploying, it results following error: ``` Serverless: Operation failed! Serverless Error --------------------------------------- An error occurred: ProcessbundleLambdaFunction - Unzipped size must be...

*Issue #, if available:* #129 *Description of changes:* Parallel execution of `awsCodeBuild` results fillowing error: > [AWS CodeBuild Plugin] Unexpected exception upon uploading source zip to S3: The request to...

Running `awsCodeBuild` with `sourceControlType: 'jenkins'` often results following error: ``` [AWS CodeBuild Plugin] Unexpected exception upon uploading source zip to S3: The request to the service failed with a retryable...

aws-codebuild-jenkins-plugin targets Jenkins 2.60.3, but its dependency targets Jenkins > 2.60.3. Example: https://github.com/awslabs/aws-codebuild-jenkins-plugin/pull/128 You bumped script-security 1.56 to 1.75, but script-security-1.75 targets Jenkins-2.176.4: https://github.com/jenkinsci/script-security-plugin/blob/script-security-1.75/pom.xml @leoherran-aws This results `mvn hpi:run` failed...

* They allow to remove duplicated log entries. Closes #29 ## What does this do / why do we need it? * Introduce new go template custom functions `uniqueOlderCommits` and...

Use `sort.SliceStable` instead of `sort.Slice` to sort commits. Closes #209 ## What does this do / why do we need it? This change uses `sort.SliceStable` to sort commits: https://pkg.go.dev/sort#SliceStable Current...

## Expected Behavior The **order** of log entries are always same for any configurations if `options.commits.sort_by` is not changed. ## Actual Behavior The order of log entries differs for different...

**- What I did** This change allows host paths in bind mounts specified in `docker` command line automatically mapped to the paths suitable in hosts where dockerd runs. **- How...