This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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> |
NewerOlder