-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bootstrap crc in github action (#1202)
Signed-off-by: PuneetPunamiya <ppunamiy@redhat.com>
- Loading branch information
1 parent
1e43c8c
commit 227b311
Showing
4 changed files
with
303 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: Test Chains on CRC | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
name: Run E2E Tests on CRC | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go: | ||
- '1.22' | ||
env: | ||
SHELL: /bin/bash | ||
KUBECONFIG: '/Users/runner/.kube/config' | ||
|
||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.sha }} | ||
- uses: imjasonh/setup-ko@v0.7 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Download and install CRC | ||
run: | | ||
wget "https://developers.redhat.com/content-gateway/file/pub/openshift-v4/clients/crc/2.40.0/crc-linux-amd64.tar.xz" | ||
tar -xf crc-linux-amd64.tar.xz --directory /usr/local/bin --strip-components=1 crc-linux-2.40.0-amd64/crc | ||
- name: Testing CRC | ||
run: | | ||
which crc | ||
crc --help | ||
- name: Install required virtualization software | ||
run: | | ||
sudo apt-get update | ||
sudo apt install qemu-kvm libvirt-daemon libvirt-daemon-system | ||
sudo usermod -a -G libvirt $USER | ||
- name: Install yq | ||
run: | | ||
sudo wget https://github.com/mikefarah/yq/releases/download/v4.31.2/yq_linux_amd64 -O /usr/local/bin/yq | ||
sudo chmod +x /usr/local/bin/yq | ||
yq --version | ||
- name: Set the crc config | ||
env: | ||
PULL_SECRET_CONTENT: ${{ secrets.CRC_TOKEN }} | ||
run: | | ||
crc config set preset microshift | ||
echo "$PULL_SECRET_CONTENT" > pull-secret | ||
crc config set pull-secret-file pull-secret | ||
crc config set network-mode user | ||
crc config set memory 14000 | ||
- name: Setup the crc | ||
run: sudo -su $USER crc setup | ||
- name: Start the crc | ||
run: sudo -su $USER crc start | ||
- name: Set Creds | ||
run: | | ||
sudo -su $USER crc oc-env | ||
echo "KUBECONFIG=$HOME/.crc/machines/crc/kubeconfig" >> $GITHUB_ENV | ||
- name: Install Tekton Pipelines and Chains | ||
run: | | ||
# To deploy on Openshift | ||
oc adm policy add-scc-to-user anyuid -z tekton-pipelines-controller | ||
oc adm policy add-scc-to-user anyuid -z tekton-pipelines-webhook | ||
chmod +x test/crc_test.sh | ||
./test/crc_test.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
#!/usr/bin/env bash | ||
|
||
export namespace="${NAMESPACE:-tekton-chains}" | ||
|
||
function start_registry() { | ||
running="$(docker inspect -f '{{.State.Running}}' ${REG_NAME} 2>/dev/null || echo false)" | ||
|
||
if [[ ${running} != "true" ]];then | ||
docker rm -f kind-registry || true | ||
docker run \ | ||
-d --restart=always -p "127.0.0.1:${REG_PORT}:5000" \ | ||
-e REGISTRY_HTTP_SECRET=secret \ | ||
--name "${REG_NAME}" \ | ||
registry:2 | ||
fi | ||
} | ||
|
||
function install_chains() { | ||
echo ">> Deploying Tekton Chains" | ||
export KO_DOCKER_REPO=ttl.sh | ||
ko apply -f config/ || fail_test "Tekton Chains installation failed" | ||
ko resolve -f config > release.yaml | ||
yq 'del(.spec.template.spec.containers[].securityContext.runAsUser, .spec.template.spec.containers[].securityContext.runAsGroup)' release.yaml | oc apply -f - | ||
|
||
# Wait for pods to be running in the namespaces we are deploying to | ||
wait_until_pods_running ${namespace} || fail_test "Tekton Chains did not come up" | ||
} | ||
|
||
|
||
function spire_apply() { | ||
if [ $# -lt 2 -o "$1" != "-spiffeID" ]; then | ||
echo "spire_apply requires a spiffeID as the first arg" >&2 | ||
exit 1 | ||
fi | ||
show=$(kubectl exec -n spire spire-server-0 -c spire-server -- \ | ||
/opt/spire/bin/spire-server entry show $1 $2) | ||
if [ "$show" != "Found 0 entries" ]; then | ||
# delete to recreate | ||
entryid=$(echo "$show" | grep "^Entry ID" | cut -f2 -d:) | ||
kubectl exec -n spire spire-server-0 -c spire-server -- \ | ||
/opt/spire/bin/spire-server entry delete -entryID $entryid | ||
fi | ||
kubectl exec -n spire spire-server-0 -c spire-server -- \ | ||
/opt/spire/bin/spire-server entry create "$@" | ||
} | ||
|
||
function install_spire() { | ||
echo ">> Deploying Spire" | ||
kubectl create ns spire --dry-run=client -o yaml | kubectl apply -f - | ||
oc adm policy add-scc-to-user anyuid -z spire-agent -n spire | ||
oc adm policy add-scc-to-user anyuid -z spire-server -n spire | ||
kubectl -n spire apply -f "test/testdata/spire.yaml" | ||
wait_until_pods_running spire || fail_test "Spire did not come up" | ||
spire_apply \ | ||
-spiffeID spiffe://example.org/ns/spire/node/example \ | ||
-selector k8s_psat:cluster:example \ | ||
-selector k8s_psat:agent_ns:spire \ | ||
-selector k8s_psat:agent_sa:spire-agent \ | ||
-node | ||
spire_apply \ | ||
-spiffeID spiffe://example.org/ns/${namespace}/sa/tekton-chains-controller \ | ||
-parentID spiffe://example.org/ns/spire/node/example \ | ||
-selector k8s:ns:${namespace} \ | ||
-selector k8s:sa:tekton-chains-controller | ||
} | ||
|
||
function vault_exec() { | ||
envcmd="" | ||
if [ -n "$ROOT_TOKEN" ]; then | ||
envcmd="env VAULT_TOKEN=$ROOT_TOKEN" | ||
fi | ||
kubectl exec -i -n vault vault-0 -- $envcmd vault "$@" | ||
} | ||
|
||
function install_vault() { | ||
echo ">> Deploying Vault" | ||
kubectl create ns vault --dry-run=client -o yaml | kubectl apply -f - | ||
oc adm policy add-scc-to-user anyuid -z vault -n vault | ||
kubectl -n vault apply -f test/testdata/vault.yaml | ||
wait_until_pods_running vault || fail_test "Vault did not come up" | ||
ROOT_TOKEN=token12345 | ||
vault_exec secrets list 2>&1 | grep "^transit/" \ | ||
|| vault_exec secrets enable transit | ||
vault_exec auth list 2>&1 | grep "^jwt/" \ | ||
|| vault_exec auth enable jwt | ||
vault_exec read auth/jwt/config >/dev/null 2>&1 \ | ||
|| vault_exec write auth/jwt/config \ | ||
oidc_discovery_url=http://spire-oidc.spire:8082 \ | ||
default_role="spire" | ||
vault_exec policy read spire-transit >/dev/null 2>&1 \ | ||
|| vault_exec policy write spire-transit - <<EOF | ||
path "transit/*" { | ||
capabilities = ["read"] | ||
} | ||
path "transit/sign/e2e" { | ||
capabilities = ["create", "read", "update"] | ||
} | ||
path "transit/sign/e2e/*" { | ||
capabilities = ["read", "update"] | ||
} | ||
path "transit/verify/e2e" { | ||
capabilities = ["create", "read", "update"] | ||
} | ||
path "transit/verify/e2e/*" { | ||
capabilities = ["read", "update"] | ||
} | ||
EOF | ||
vault_exec read auth/jwt/role/spire-chains-controller >/dev/null 2>&1 \ | ||
|| vault_exec write auth/jwt/role/spire-chains-controller \ | ||
role_type=jwt \ | ||
user_claim=sub \ | ||
bound_audiences=e2e \ | ||
bound_subject=spiffe://example.org/ns/${namespace}/sa/tekton-chains-controller \ | ||
token_ttl=15m \ | ||
token_policies=spire-transit | ||
vault_exec read transit/keys/e2e >/dev/null 2>&1 \ | ||
|| vault_exec write transit/keys/e2e type=ecdsa-p521 | ||
vault_exec read -format=json transit/keys/e2e \ | ||
| jq -r .data.keys.\"1\".public_key >"test/testdata/vault.pub" | ||
} | ||
|
||
function chains_patch_spire() { | ||
kubectl patch -n ${namespace} deployment tekton-chains-controller \ | ||
--patch-file "test/testdata/chains-patch-spire.json" | ||
# Wait for pods to be running in the namespaces we are deploying to | ||
wait_until_pods_running ${namespace} || fail_test "Tekton Chains did not come up after patching" | ||
} | ||
|
||
function wait_until_pods_running() { | ||
echo -n "Waiting until all pods in namespace $1 are up" | ||
for i in {1..150}; do # timeout after 5 minutes | ||
local pods="$(kubectl get pods --no-headers -n $1 2>/dev/null)" | ||
# All pods must be running | ||
local not_running=$(echo "${pods}" | grep -v Running | grep -v Completed | wc -l) | ||
if [[ -n "${pods}" && ${not_running} -eq 0 ]]; then | ||
local all_ready=1 | ||
while read pod ; do | ||
local status=(`echo -n ${pod} | cut -f2 -d' ' | tr '/' ' '`) | ||
# All containers must be ready | ||
[[ -z ${status[0]} ]] && all_ready=0 && break | ||
[[ -z ${status[1]} ]] && all_ready=0 && break | ||
[[ ${status[0]} -lt 1 ]] && all_ready=0 && break | ||
[[ ${status[1]} -lt 1 ]] && all_ready=0 && break | ||
[[ ${status[0]} -ne ${status[1]} ]] && all_ready=0 && break | ||
done <<< $(echo "${pods}" | grep -v Completed) | ||
if (( all_ready )); then | ||
echo -e "\nAll pods are up:\n${pods}" | ||
return 0 | ||
fi | ||
fi | ||
echo -n "." | ||
sleep 2 | ||
done | ||
echo -e "\n\nERROR: timeout waiting for pods to come up\n${pods}" | ||
return 1 | ||
} | ||
|
||
curl https://storage.googleapis.com/tekton-releases/pipeline/latest/release.notags.yaml | yq 'del(.spec.template.spec.containers[].securityContext.runAsUser, .spec.template.spec.containers[].securityContext.runAsGroup)' | oc apply -f - | ||
|
||
start_registry | ||
|
||
install_chains | ||
|
||
install_spire | ||
|
||
install_vault | ||
|
||
chains_patch_spire | ||
|
||
export GCE_METADATA_HOST=localhost | ||
export OPENSHIFT=localhost | ||
go test -v -count=1 -tags=e2e -timeout=35m ./test/... --kubeconfig $HOME/.crc/machines/crc/kubeconfig |
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
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