mirror of
https://github.com/Katakate/k7.git
synced 2026-09-22 01:53:19 +00:00
13fafe0997
Per-key node pins, k7d-fc pause/resume/exec, and HA-soak fixes. Playbook pins k7d 0.7.0. GitHub .deb, Launchpad PPA, and PyPI k7-sdk are 0.4.0.
14 lines
399 B
YAML
14 lines
399 B
YAML
name: demo
|
|
image: alpine:3.20
|
|
namespace: default
|
|
# node_name: k7-node-01 # copy NAME from `k7 nodes list` (Linux hostname); dedicate to lock others out
|
|
backend: k7d
|
|
limits:
|
|
cpu: "1"
|
|
memory: "1Gi"
|
|
before_script: |
|
|
# Installing curl. Egress is open during before_script, then restricted
|
|
# (empty whitelist) afterwards. 128Mi is too small for a VM sandbox.
|
|
apk add curl
|
|
egress_whitelist: []
|