Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions scripts/catalog-build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -Eeo pipefail

OPM_TOOL="opm"
CONTAINER_TOOL="docker"

Expand Down
2 changes: 2 additions & 0 deletions scripts/e2e-kind.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -Eeo pipefail

readonly usage="Usage: e2e-minikube.sh --test-tag <test-id>"

readonly KUBE_CLUSTER_NAME="kind-e2e-cluster"
Expand Down
2 changes: 2 additions & 0 deletions scripts/e2e-minikube.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -Eeo pipefail

readonly usage="Usage: e2e-minikube.sh --test-tag <test-id>"

readonly LOCAL_REGISTRY="localhost:5000"
Expand Down
2 changes: 2 additions & 0 deletions scripts/e2e.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -Eeo pipefail

readonly usage="Usage: e2e.sh -u <docker-username> -p <docker-password> --cluster-url <url> --cluster-token <token> --registry-name <name> --registry-namespace <namespace> --release <daily|release-tag> --test-tag <test-id>"
readonly SERVICE_ACCOUNT="travis-tests"
readonly OC_CLIENT_VERSION="4.6.0"
Expand Down
2 changes: 2 additions & 0 deletions scripts/pipeline/ci_to_secure_pipeline_scan.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

set -e -o pipefail

echo "Connecting to the Security Scan Toolchain"

# IMAGES_TO_SCAN is delimited by "\n"
Expand Down
1 change: 1 addition & 0 deletions scripts/pipeline/fyre-e2e.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e -o pipefail

readonly usage="Usage: fyre-e2e.sh -u <docker-username> -p <docker-password> --cluster-url <url> --cluster-token <token> --registry-name <name> --registry-image <ns/image> --registry-user <user> --registry-password <password> --release <daily|release-tag> --test-tag <test-id> --catalog-image <catalog-image> --channel <channel>"
readonly OC_CLIENT_VERSION="4.6.0"
Expand Down
1 change: 1 addition & 0 deletions scripts/pipeline/release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env bash

set -e -o pipefail
#
# prepare data
#
Expand Down
2 changes: 2 additions & 0 deletions scripts/pipeline/static-linter-scan.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -e -o pipefail

readonly usage="Usage: static-linter-scan.sh --git-token <GHE token> --static-linter-version <Linter Version>"
readonly WORK_DIR="${PWD}/linter-tool"

Expand Down
2 changes: 2 additions & 0 deletions scripts/pipeline/twistlock-scan.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash -e

set -e -o pipefail

function install_twistlock() {
DEBIAN_FRONTEND=noninteractive apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get -y install uuid-runtime file jq && \
Expand Down
1 change: 1 addition & 0 deletions scripts/pipeline/va_scan
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env bash

set -e -o pipefail

_toolchain_read() {
jq -r "$1" "$TOOLCHAIN_CONFIG_JSON" | tr -d '\n'
Expand Down