➜ must-gather git:(main) zarf package publish zarf-package-uds-must-gather-amd64-1.1.0.tar.zst oci://registry.defenseunicorns.com/navy-tide/uds-must-gather
2026-07-13 14:21:56 WRN package signature could not be verified: error=package is not signed - verification cannot be performed
2026-07-13 14:21:56 INF skipping package signing (no signing key material configured)
2026-07-13 14:21:56 INF pushing package to registry destination=registry.defenseunicorns.com/navy-tide/uds-must-gather/uds-must-gather:1.1.0 architecture=amd64 size=7.98 MBs
2026-07-13 14:22:01 INF package publish in progress name=registry.defenseunicorns.com/navy-tide/uds-must-gather/uds-must-gather:1.1.0 complete=100.0% remaining=0.00 Byte
2026-07-13 14:22:02 INF completed package publish destination=registry.defenseunicorns.com/navy-tide/uds-must-gather/uds-must-gather:1.1.0 duration=5.2s
➜ must-gather git:(main)
This file contains hidden or 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
| find . -name '*.zst' -ok rm {} \; | |
| find . -name '*.raw' -ok rm {} \; | |
| find . -name '*.iso' -ok rm {} \; | |
| docker image prune -a -f | |
| docker volume prune -a -f | |
| docker builder prune -a -f | |
| docker system prune -a -f | |
| zarf tools clear-cache && rm -rf /tmp/zarf-* | |
| rm -rf ~/.uds-cache | |
| rm -rf /tmp/uds-* |
Read node modules:
docker run --rm --entrypoint node pepr:dev -e "console.log(require('fs').readdirSync('node_modules').join('\n'))"Read a node module
docker run --rm --entrypoint node pepr:dev -e "const fs=require('fs'); const p='node_modules/kubernetes-fluent-client/package.json'; const j=JSON.parse(fs.readFileSync(p,'utf8')); console.log(j.name+'@'+j.version);"npm run build # in pepr
rm -rf node_modules/pepr/src node_modules/pepr/dist
cp -r ~/pepr/src node_modules/pepr/src ~/pepr/dist node_modules/pepr/dist # in uds-core
node node_modules/pepr/dist/cli.js dev --yes # in uds-core
This file contains hidden or 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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # ========= Config ========= | |
| REPO="defenseunicorns/uds-compliance" | |
| SUBISSUE_PARENT=545 # Parent issue to attach sub-issues to | |
| LABEL="Lula2" # Label to apply to created issues | |
| DRY_RUN="${DRY_RUN:-1}" # Override with: DRY_RUN=0 bash issue_creator.sh | |
| # ========================== |
npm i --no-save pepr-0.0.0-development.tgz
PEPR_CUSTOM_IMAGE="pepr:dev" uds run slim-dev
uds run slim-dev && k3d image import pepr:dev -c uds;
k label ns pepr-system zarf.dev/agent=ignore && \
k set image deploy/pepr-uds-core-watcher -n pepr-system watcher=pepr:dev && \
k set image deploy/pepr-uds-core -n pepr-system server=pepr:dev && \
uds run test:single-layer --set=layer=metrics-server && \
uds run test:single-layer --set=layer=monitoring k run --rm -i --image=nginx curler -n pepr-system -- curl -k https://pepr-uds-core/metrics Run a local zot registry
docker run --platform linux/amd64 -d -p 3333:5000 --name oras-quickstart ghcr.io/project-zot/zot-linux-amd64:latestBuild Pepr image and library
npm run build:imageNewerOlder