/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blogops.mixinet.net
| | bounty.github.com
4.0 parsecs away

Travel
| |
| | aixxe.net
4.5 parsecs away

Travel
| | Installing GitLab CE with Docker, setting up Windows & Linux job runners, and demonstrating a Visual Studio project build with GitLab CI.
| | hjr265.me
4.6 parsecs away

Travel
| | Git has this great feature that I think is well-known but under-used. I am talking about Git hooks. With Git hooks, you can run scripts during different Git actions. Like this one: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #!/bin/sh GOFILES=`git diff --name-only --cached | grep -e '.go$' | grep -ve 'vendor/'` UNFMTFILES=() for f in $GOFILES; do if [ -n "`gofmt -l -s .
| | dzone.com
22.7 parsecs away

Travel
| In Part 2 of this two-part series, we will create a GitLab pipeline to register the Docker image of the Ansible playbook to a Docker registry and deploy it to Kubernetes.