Skip to content

Instantly share code, notes, and snippets.

View eloylp's full-sized avatar
🎯
Focusing

eloylp eloylp

🎯
Focusing
View GitHub Profile
@eloylp
eloylp / go_multi_arch_build.sh
Created December 27, 2018 18:07
Automated go multiarch build
#!/usr/bin/env bash
package=$1
output_dir=$2
targets=$3
if [[ -z "$package" || -z "$output_dir" || -z "$targets" ]]; then
echo "usage: $0 <package-name> <output_dir> <platform/arch/version|another_platform/arch/version>"
echo "example: ./go_multi_arch_build.sh github.com/someone/nice-package /absolute/binary/output/path 'windows/amd64|linux/amd64|linux/arm/5'"
exit 1
@eloylp
eloylp / migrate_docker_registry.sh
Created September 27, 2018 09:39
A simple script for moving your entire registry to other.
#!/bin/bash
# You must be logged in both registries before.
SOURCE_REGISTRY_IMAGES=(
your.source.registry/namespace1/subnamespace1/image1:tag
your.source.registry/namespace1/subnamespace1/image2:tag
)
DESTINATION_REGISTRY_NAMESPACE="your.destination.registry/namespace/subnamespace"
@eloylp
eloylp / gcloud_cli_docker.sh
Last active September 24, 2018 06:48
Google Cloud Cli Authentication inside docker, sharing your docker host daemon for pushing images. No need to install Gcloud Cli on your system.
## Execute this commands over your working tree.
docker pull google/cloud-sdk:latest
docker run -ti google/cloud-sdk:latest gcloud version
docker run -ti --name gcloud-config google/cloud-sdk gcloud auth login
docker run --rm -ti --volumes-from gcloud-config google/cloud-sdk gcloud config set project <your_project_id_here>
docker run --rm -ti -v $(pwd):/src -v /var/run/docker.sock:/var/run/docker.sock:ro --volumes-from gcloud-config google/cloud-sdk bash
## Optional, set up your kubernetes credentials.
gcloud container clusters get-credentials <your_kubernetes_cluster> --zone <gcloud_cluster_zone> --project <your_project_id_here>