1. h8 set env can't unset/remove environment variables
h8 set env only merges -- there is no way to remove an env var once set. The only workaround is a full PUT via the API with the subset of envs you want to keep.
Proposal: Add a --delete or --remove flag:
h8 set env myapp --delete GITEA_WORK_DIR # remove single var
h8 set env myapp KEY1=val1 KEY2=val2 --clear # replace all envs
2. No h8 app update command for arbitrary config changes
There is no generic way to update app config from the CLI. The only partial-update commands are set image, set env, set replicas, and set disk. Changing the command, args, probes, ingress annotations, etc. requires the web console or raw API calls.
Proposal: Add a generic update command:
h8 app update myapp --command "sleep 3600" # override entrypoint
h8 app update myapp --probe /healthz # set readiness probe
h8 app update myapp --json '{"svc":{...}}' # raw partial update
3. h8 set disk can't set independent partition sizes
Disk partitions share a single size_in_Gi -- you can't say "config gets 1GiB, data gets 5GiB". The two partitions split the total with no way to enforce boundaries.
1.
h8 set envcan't unset/remove environment variablesh8 set envonly merges -- there is no way to remove an env var once set. The only workaround is a full PUT via the API with the subset of envs you want to keep.Proposal: Add a
--deleteor--removeflag:2. No
h8 app updatecommand for arbitrary config changesThere is no generic way to update app config from the CLI. The only partial-update commands are
set image,set env,set replicas, andset disk. Changing the command, args, probes, ingress annotations, etc. requires the web console or raw API calls.Proposal: Add a generic update command:
3.
h8 set diskcan't set independent partition sizesDisk partitions share a single
size_in_Gi-- you can't say "config gets 1GiB, data gets 5GiB". The two partitions split the total with no way to enforce boundaries.