Skip to content

Instantly share code, notes, and snippets.

View orpiske's full-sized avatar
🏠
Working from home

Otavio Rodolfo Piske orpiske

🏠
Working from home
View GitHub Profile
BASE_DIR=$(pwd)
function simpleTest() {
local testInfraDir=${BASE_DIR}/test-infra/camel-test-infra-$1
local testComponent=${BASE_DIR}/components/camel-${2:-$1}
if [[ ! -d ${testInfraDir} ]] ; then
echo "Skipped build and tests for $1 because ${testInfraDir} does not exist"
return
fi
BASE_DIR=$(pwd)
function notify-pushover() {
# Add stuff here if you want to send notifications somewhere (i.e.: your cell phone)
}
function simpleTest() {
local testInfraDir=${BASE_DIR}/test-infra/camel-test-infra-$1
local testComponent=${BASE_DIR}/components/camel-${2:-$1}
#!/bin/sh
MAVEN_DAEMON_VERSION=0.8.1
GRAALVM_VERSION=22.2.0
GRAALVM_JAVA_VERSION=17
function prepare() {
echo "Preparing"
unset JAVA_HOME
#!/bin/sh
# Sobe a infraestrutura para rodar os tess
docker-compose up -d
# Roda o build e os testes
mvn clean verify
# Salva o resultado do mvn. Entenda sobre isso aqui: https://tldp.org/LDP/abs/html/exit-status.html
@orpiske
orpiske / install.sh
Last active July 2, 2022 18:08
Maven Daemon install script
#!/bin/sh
MAVEN_DAEMON_VERSION=0.8.0
GRAALVM_VERSION=22.1.0
GRAALVM_JAVA_VERSION=17
function prepare() {
brew install --cask graalvm/tap/graalvm-ce-java${GRAALVM_JAVA_VERSION}
@orpiske
orpiske / kind-with-local-registry.sh
Created May 12, 2021 09:18
Kind with local registry (with registry address fixes)
#!/bin/sh
set -o errexit
####
## Kind cluster with local registry (fixed script from the upstream kind). See NOTE comments below for the changed items
# create registry container unless it already exists
reg_name='kind-registry'
reg_port='5000'
running="$(docker inspect -f '{{.State.Running}}' "${reg_name}" 2>/dev/null || true)"
@orpiske
orpiske / Dockerfile
Created December 10, 2020 08:50
Camel Apache CI simulated environment
###
# How to build the container:
#
# To create a container that uses OpenJDK:
# docker build --build-arg CI_USER=$(whoami) --target ci-openjdk --tag ci-openjdk .
#
# To create a container that uses Oracle JDK (as in CI):
# 1. First download the Oracle JDK from the Oracle web site (ie.: jdk-11.0.9_linux-x64_bin.tar.gz)
#
# 2. Then build the container with:
@orpiske
orpiske / maestro.yaml
Created December 5, 2018 13:36
Maestro Deployment for Kubernetes or OpenShift
# ------------------- Maestro Broker Deployment ------------------- #
apiVersion: apps/v1
kind: Deployment
metadata:
name: maestro-broker
spec:
replicas: 1
selector:
matchLabels:
component: broker
@orpiske
orpiske / docker-ibmmqlight-compose.yml
Last active October 30, 2018 18:19
Docker compose for running IBM MQ Light as a SUT with Maestro
version: '3.4'
services:
sut:
image: docker.io/ibmcom/mqlight
environment:
# You have to specifically accept the license on your own.
# this is provided just as a convenience
# - LICENSE=accept
networks:
- test
version: '3'
networks:
cluster:
driver: overlay
test:
driver: overlay
services:
broker:
image: 127.0.0.1:5000/maestro_broker
build: broker