Use the default namespace for the demo
```bash
ssh -D 1080 cmwylie19@192.168.4.90
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \
--user-data-dir=/tmp/chrome-socks \
--proxy-server="socks5://127.0.0.1:1080"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| #!/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:image| const fs = require('fs'); | |
| function reorganizeChangelog(filePath) { | |
| const changelog = fs.readFileSync(filePath, 'utf8'); | |
| const lines = changelog.split('\n'); | |
| const whatsChangedIdx = lines.findIndex(line => line.trim() === '## What\'s Changed'); | |
| if (whatsChangedIdx === -1) { | |
| console.error('No "## What\'s Changed" section found.'); | |
| return; |
nmap -p 22 192.168.6.0/24 192.168.5.0/24
# Just the IPs
nmap -p 22 --open 192.168.6.0/24 192.168.5.0/24
# Use -T4 to speed it up (aggressive timing):
nmap -p 22 --open -T4 192.168.6.0/24 192.168.5.0/24
# Or output to a grep-friendly file:git merge upstream/main --allow-unrelated-histories -X theirs