feature: added namespace helper #1591
Workflow file for this run
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
name: Integration test | |
on: | |
pull_request: | |
push: | |
jobs: | |
integration-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
k8s_version: [v1.31.1, v1.30.4, v1.29.8] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
with: | |
version: v0.24.0 | |
node_image: kindest/node:${{ matrix.k8s_version }} | |
cluster_name: kind-cluster-${{ matrix.k8s_version }} | |
config: test/integration/kind-cluster.yaml | |
- name: Install Nginx ingress controller | |
run: | | |
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.11.2/deploy/static/provider/kind/deploy.yaml | |
kubectl wait --namespace ingress-nginx --for=condition=ready pod --selector=app.kubernetes.io/component=controller --timeout=120s | |
- name: Set up Go 1.23 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Cache go mod | |
uses: actions/cache@v4 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Set /etc/hosts | |
run: | | |
sudo -- sh -c "echo '127.0.0.1 harbor.local' >> /etc/hosts" | |
- name: Run integration tests | |
working-directory: ./test | |
run: | |
go test -v -timeout 30m github.com/goharbor/harbor-helm/integration | |
- name: fetch harbor logs | |
if: failure() | |
run: | | |
df -h | |
free -m | |
mkdir -p /tmp/harbor | |
for name in core jobservice registry registryctl trivy portal redis database; do \ | |
kubectl -n default logs -l "component=$name" --all-containers > /tmp/harbor/$name.log ; \ | |
done | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: harbor_${{ matrix.k8s_version }}_${{ runner.os }} | |
path: /tmp/harbor | |
- name: fetch logs | |
if: failure() | |
run: | | |
mkdir -p /tmp/logs | |
kind export logs --name kind-cluster-${{ matrix.k8s_version }} /tmp/logs | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: kind_v${{ matrix.k8s_version }} | |
path: /tmp/logs |