Skip to content

Instantly share code, notes, and snippets.

View askb's full-sized avatar

askb askb

View GitHub Profile
@askb
askb / gist:55d69f025023c724ec11a49381e0d1a2
Created April 24, 2025 09:53
Changes required for conditionally building packer images locally outside the cloud tenat
$ git diff
diff --git a/templates/builder.pkr.hcl b/templates/builder.pkr.hcl
index ab331b0..316c9ef 100644
--- a/templates/builder.pkr.hcl
+++ b/templates/builder.pkr.hcl
@@ -149,11 +149,12 @@ build {
"ANSIBLE_HOST_KEY_CHECKING=False",
"ANSIBLE_ROLES_PATH=${var.ansible_roles_path}",
"ANSIBLE_CALLBACK_WHITELIST=profile_tasks",
- "ANSIBLE_STDOUT_CALLBACK=debug"
@askb
askb / gerrit_query_parse.sh
Last active April 3, 2025 12:15
Gerrit query info - Input Gerrit change request URL and output required change-info for reusable workflows
#!/bin/bash
# Script to execute a Gerrit query, parse JSON output, and set environment variables.
# Usage: ./gerrit_query_parse.sh <gerrit_url> <user_name> [<patchset revision>]
if [ "$#" -lt 2 ] || [ "$#" -gt 3 ]; then
echo "Usage: $0 <gerrit_url> <ssh_user_name> [ <patchset revision> ]"
exit 1
fi
#!/bin/bash
# SPDX-License-Identifier: EPL-1.0
##############################################################################
# Copyright (c) 2022 The Linux Foundation and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
##############################################################################
FROM centos:7
SHELL ["/bin/bash", "-c"]
ARG SIGN_DIR="${WORKSPACE}/m2repo"
ARG GIT_TAG=""
RUN echo $'[fedora-infra-sigul] \n\
name=Fedora builder packages for sigul \n\
baseurl=https://kojipkgs.fedoraproject.org/repos-dist/epel\$releasever-infra/latest/\$basearch/ \n\
enabled=1 \n\
@askb
askb / gist:4df53e74ce385dedd58ca000d392836f
Created October 13, 2022 00:35
Debug packer provisioner with verbose output
diff --git a/templates/builder.json b/templates/builder.json
index 0fa217d..c1eb535 100644
--- a/templates/builder.json
+++ b/templates/builder.json
@@ -56,6 +56,7 @@
{
"type": "ansible",
"playbook_file": "provision/local-builder.yaml",
+ "extra_arguments": ["-vvvv"],
"ansible_env_vars": [
## pyenv configs
# Set the python version available under pyenv
export PYENV_ROOT="/opt/pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
set_python_version="3.9"
# Takes 3.x and returns 3.x.y from the available py3.x versions on the system
pyver() { grep "^$(echo ${1//[a-zA-Z]/})\(\..*\)\?\.[0-9]\+$" <(pyenv versions | sed 's/[[:alpha:]|(|)|/||*|[:space:]]//g'| tr -d ' ') | sort -V | tail -n 1 ; }
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
#!/usr/bin/no-execute
# shellcheck shell=bash
# SPDX-License-Identifier: EPL-1.0
##############################################################################
# Copyright (c) 2019 The Linux Foundation and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@askb
askb / sigul-sign.sh
Created May 26, 2022 23:04
sigul-sign.sh
#!/bin/bash
# Script to run the sigul signing within the docker image
set -x
echo "Sign files in: $SIGN_DIR"
set -e # Fail immediately if any if signing fails
find "${SIGN_DIR}" -type f ! -name "*.asc" \
! -name "*.md5" \
! -name "*.sha1" \
@askb
askb / Dockerfile
Created May 26, 2022 22:58
Dockerfile to build CentOS 7 container with Sigul installed.
FROM centos:7
SHELL ["/bin/bash", "-c"]
RUN echo $'[fedora-infra-sigul] \n\
name=Fedora builder packages for sigul \n\
baseurl=https://kojipkgs.fedoraproject.org/repos-dist/epel\$releasever-infra/latest/\$basearch/ \n\
enabled=1 \n\
gpgcheck=1 \n\
gpgkey=https://infrastructure.fedoraproject.org/repo/infra/RPM-GPG-KEY-INFRA-TAGS \n\
includepkgs=sigul* \n\
builder]$ ./check-bashisms.sh
could not find any possible bashisms in bash script ./jenkins-init-scripts/mininet-ubuntu.sh
could not find any possible bashisms in bash script ./jenkins-init-scripts/robot.sh
could not find any possible bashisms in bash script ./jenkins-init-scripts/builder.sh
could not find any possible bashisms in bash script ./jenkins-init-scripts/devstack.sh
could not find any possible bashisms in bash script ./jenkins-init-scripts/docker.sh
could not find any possible bashisms in bash script ./packer/provision/system_reseal_local_env.sh
could not find any possible bashisms in bash script ./packer/provision/rh-user_data.sh
could not find any possible bashisms in bash script ./packer/provision/system_reseal.sh
could not find any possible bashisms in bash script ./packer/provision/null_data.sh