Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b950f87
feat: add unified airgap RKE2 infra pipeline (Jenkinsfile.airgap-rke2…
floatingman Mar 31, 2026
29681e5
fix: add repo URL parameters to standardCheckout
floatingman Mar 31, 2026
b30ef35
fix: load all credentials once at stages level
floatingman Mar 31, 2026
1427f91
fix: wrap all stages in single property.useWithProperties block
floatingman Mar 31, 2026
bddf945
debug: add logging before S3 upload to diagnose empty params
floatingman Mar 31, 2026
e581b20
fix: use local variable for workspaceName instead of env
floatingman Mar 31, 2026
b40a70b
fix: pass S3 bucket/region overrides to shared s3 functions
floatingman Mar 31, 2026
a36349c
feat: generate Ansible inventory from tofu airgap_inventory_json output
floatingman Apr 1, 2026
ca5d3e4
refactor: use generate_inventory.py instead of inline Groovy inventory
floatingman Apr 1, 2026
0ba2ea9
refactor: eliminate S3 tfvars round-trip, reconstruct from job config
floatingman Apr 1, 2026
63c2608
fix: add SSH key copy stage before RKE2 deploy
floatingman Apr 1, 2026
e15f011
fix: add debug logging to post-failure teardown
floatingman Apr 1, 2026
9633429
fix: read workspace name from file in post-failure teardown
floatingman Apr 1, 2026
2db4b23
feat: split airgap RKE2 infra pipeline into setup/destroy jobs
floatingman Apr 1, 2026
506c7c8
chore: remove unified Jenkinsfile.airgap-rke2-infra (replaced by spli…
floatingman Apr 1, 2026
f865745
fix: address PR #595 review comments
floatingman Apr 1, 2026
7d40ab9
feat: add declarative airgap RKE2 test pipeline (issue #591)
floatingman Apr 2, 2026
1a6c721
fix: add make to Dockerfile.airgap-go-tests
floatingman Apr 3, 2026
6d7ca52
Pull changes to airgap setup jenkinsfile
floatingman Jun 19, 2026
515a96c
Fixed backend init problem
floatingman Jun 19, 2026
ecbfa88
Fixed shebang issue
floatingman Jun 19, 2026
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
5 changes: 4 additions & 1 deletion validation/pipeline/Dockerfile.airgap-go-tests
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ RUN apk add --no-cache \
bash \
curl \
git \
make \
openssh-client \
python3 \
py3-pip \
ca-certificates
ca-certificates \
&& ln -sf /bin/bash /usr/bin/bash \
&& rm -rf /var/cache/apk/*

# Install Ansible and AWS CLI (pinned versions for reproducible builds)
RUN pip3 install --no-cache-dir --break-system-packages \
Expand Down
Loading
Loading