-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add integration tests for image-cache
Provide separate `integration/image-cache` tag. Closes #9860 Signed-off-by: Dmitriy Matrenichev <[email protected]>
- Loading branch information
Showing
6 changed files
with
190 additions
and
4 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. | ||
# | ||
# Generated on 2024-12-04T12:34:25Z by kres 232fe63. | ||
# Generated on 2024-12-04T17:17:47Z by kres 232fe63. | ||
|
||
name: default | ||
concurrency: | ||
|
@@ -1606,6 +1606,103 @@ jobs: | |
TF_SCRIPT_DIR: _out/contrib | ||
run: | | ||
make e2e-cloud-tf | ||
integration-image-cache: | ||
permissions: | ||
actions: read | ||
contents: write | ||
issues: read | ||
packages: write | ||
pull-requests: read | ||
runs-on: | ||
- self-hosted | ||
- talos | ||
if: contains(fromJSON(needs.default.outputs.labels), 'integration/image-cache') | ||
needs: | ||
- default | ||
steps: | ||
- name: gather-system-info | ||
id: system-info | ||
uses: kenchan0130/[email protected] | ||
continue-on-error: true | ||
- name: print-system-info | ||
run: | | ||
MEMORY_GB=$((${{ steps.system-info.outputs.totalmem }}/1024/1024/1024)) | ||
OUTPUTS=( | ||
"CPU Core: ${{ steps.system-info.outputs.cpu-core }}" | ||
"CPU Model: ${{ steps.system-info.outputs.cpu-model }}" | ||
"Hostname: ${{ steps.system-info.outputs.hostname }}" | ||
"NodeName: ${NODE_NAME}" | ||
"Kernel release: ${{ steps.system-info.outputs.kernel-release }}" | ||
"Kernel version: ${{ steps.system-info.outputs.kernel-version }}" | ||
"Name: ${{ steps.system-info.outputs.name }}" | ||
"Platform: ${{ steps.system-info.outputs.platform }}" | ||
"Release: ${{ steps.system-info.outputs.release }}" | ||
"Total memory: ${MEMORY_GB} GB" | ||
) | ||
for OUTPUT in "${OUTPUTS[@]}";do | ||
echo "${OUTPUT}" | ||
done | ||
continue-on-error: true | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: Unshallow | ||
run: | | ||
git fetch --prune --unshallow | ||
- name: Set up Docker Buildx | ||
id: setup-buildx | ||
uses: docker/setup-buildx-action@v3 | ||
with: | ||
driver: remote | ||
endpoint: tcp://buildkit-amd64.ci.svc.cluster.local:1234 | ||
timeout-minutes: 10 | ||
- name: Download artifacts | ||
if: github.event_name != 'schedule' | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: talos-artifacts | ||
path: _out | ||
- name: Fix artifact permissions | ||
if: github.event_name != 'schedule' | ||
run: | | ||
xargs -a _out/executable-artifacts -I {} chmod +x {} | ||
- name: ci-temp-release-tag | ||
if: github.event_name != 'schedule' | ||
run: | | ||
make ci-temp-release-tag | ||
- name: uki-certs | ||
if: github.event_name == 'schedule' | ||
env: | ||
PLATFORM: linux/amd64 | ||
run: | | ||
make uki-certs | ||
- name: image-cache | ||
env: | ||
IMAGE_REGISTRY: registry.dev.siderolabs.io | ||
PLATFORM: linux/amd64,linux/arm64 | ||
PUSH: "true" | ||
run: | | ||
make cache-create | ||
- name: e2e-image-cache | ||
env: | ||
GITHUB_STEP_NAME: ${{ github.job}}-e2e-image-cache | ||
IMAGE_REGISTRY: registry.dev.siderolabs.io | ||
SHORT_INTEGRATION_TEST: "yes" | ||
VIA_MAINTENANCE_MODE: "true" | ||
WITH_CONFIG_PATCH: '@hack/test/patches/image-cache.yaml' | ||
WITH_ISO: "true" | ||
run: | | ||
sudo -E make e2e-qemu | ||
- name: save artifacts | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: talos-logs-integration-image-cache | ||
path: |- | ||
/tmp/logs-*.tar.gz | ||
/tmp/support-*.zip | ||
retention-days: "5" | ||
integration-image-factory: | ||
permissions: | ||
actions: read | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
machine: | ||
features: | ||
imageCache: | ||
localEnabled: true | ||
registries: | ||
mirrors: | ||
"*": | ||
skipFallback: true | ||
endpoints: | ||
- http://172.20.0.251:65000 | ||
k8s.gcr.io: | ||
skipFallback: true | ||
endpoints: | ||
- http://172.20.0.251:65000 | ||
registry.k8s.io: | ||
skipFallback: true | ||
endpoints: | ||
- http://172.20.0.251:65000 | ||
--- | ||
apiVersion: v1alpha1 | ||
kind: VolumeConfig | ||
name: IMAGECACHE | ||
provisioning: | ||
diskSelector: | ||
match: 'system_disk' |
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