Releases: acorn-io/runtime
v0.10.1
What's Changed
- fix: login: eliminate possible nil dereference by @g-linville in #2445
- [docs] update for 0.10 release by @cloudnautique in #2450
- Update function-builder and squash dockerimage in release by @ibuildthecloud in #2455
- Handle unknown and evicted pods by @ibuildthecloud in #2456
- fix: unescape dots in env names (#2442) by @iwilltry42 in #2452
- fix: calculate resolvedOfferings for sidecars by @g-linville in #2451
- [fix] - promptOrder now works for credentials (#2386) by @cloudnautique in #2453
- fix: allow traefik external names in ingress by @thedadams in #2461
- Add pull secret information to debug build issues by @StrongMonkey in #2463
- fix: allow hostname to start with number when binding by @thedadams in #2464
- enhance: strip k8s scheduling details from app objects by @njhale in #2460
- fix: handle multiple compute classes in a project by @keyallis in #2459
- Revert "fix: handle multiple compute classes in a project (#2459)" by @keyallis in #2465
- Remove spamming logs by @StrongMonkey in #2466
- fix: remove resolvedOfferings, defaults, and scheduling for containers not defined in app by @g-linville in #2468
- enhancement: add ComputeClasses and VolumeClasses field to BaseResources by @tylerslaton in #2454
- Revert "enhancement: add ComputeClasses and VolumeClasses fields to BaseResources" by @tylerslaton in #2471
- fix: add CPU field to resolvedOfferings and change QuotaRequests to use resolvedOfferings by @tylerslaton in #2462
Full Changelog: v0.10.0...v0.10.1
v0.10.1-rc2
What's Changed
- fix: login: eliminate possible nil dereference by @g-linville in #2445
- [docs] update for 0.10 release by @cloudnautique in #2450
- Update function-builder and squash dockerimage in release by @ibuildthecloud in #2455
- Handle unknown and evicted pods by @ibuildthecloud in #2456
- fix: unescape dots in env names (#2442) by @iwilltry42 in #2452
- fix: calculate resolvedOfferings for sidecars by @g-linville in #2451
- [fix] - promptOrder now works for credentials (#2386) by @cloudnautique in #2453
- fix: allow traefik external names in ingress by @thedadams in #2461
- Add pull secret information to debug build issues by @StrongMonkey in #2463
- fix: allow hostname to start with number when binding by @thedadams in #2464
- enhance: strip k8s scheduling details from app objects by @njhale in #2460
- fix: handle multiple compute classes in a project by @keyallis in #2459
- Revert "fix: handle multiple compute classes in a project (#2459)" by @keyallis in #2465
- Remove spamming logs by @StrongMonkey in #2466
- fix: remove resolvedOfferings, defaults, and scheduling for containers not defined in app by @g-linville in #2468
- enhancement: add ComputeClasses and VolumeClasses field to BaseResources by @tylerslaton in #2454
- Revert "enhancement: add ComputeClasses and VolumeClasses fields to BaseResources" by @tylerslaton in #2471
Full Changelog: v0.10.0...v0.10.1-rc2
v0.10.1-rc1
What's Changed
- fix: login: eliminate possible nil dereference by @g-linville in #2445
- [docs] update for 0.10 release by @cloudnautique in #2450
Full Changelog: v0.10.0...v0.10.1-rc1
v0.10.0
New Features
ComputeClass over-provisioning - With this feature, administrators can configure computeClasses with a requestScaler
value. This will cause the memory and cpu requested to be scaled down based on the value set. For example, if the computeClass in use has its requestScaler value set to .1
and a user creates an app requesting 2 GiB of memory, the corresponding pod that is created will have its memory request field set to .2 GiB. The memory limit will remain the full 2 GiB. More details here.
ComputeClass generic resource fields - Thanks to community user @dciangot for this contribution! With this feature, administrators can now configure computeClasses with any kind of resources allowed by K8s' corev1.ResourceRequirements
. This enables interesting use cases such as supporting GPU-based nodes.
acorn install --ignore-resource-requirements
flag added - This will cause your acorn runtime to ignore all resource requirements on acorns being launched. This is useful if your Acorns define resource requests appropriate for production environments, but you want to easily spin them up locally and don’t have enough resources to accommodate them.
Support for user directive in container definitions - You can now specify a user and group containers should run as like so: user: "1000:1000”
. This will translate to containerSecurityContext.RunAsUser and RunAsGroup in the pod specification. This is useful if your container image is designed to run as a specific non-root user. See the docs here.
Support for credential
secrets - These secrets are similar to to the existing opaque type because they can hold any data you need, but they provide helpful UX to the end user by displaying instructions and prompting the user for the values. More details here.
acorn edit [app-name]
and acorn secret edit [secret name]
- With these commands, you can now easily edit applications and secrets. When editing an application, you'll be able to edit the values you set when launching the app, like the image, environment variables, and deploy arguments.
Housekeeping
With this release you may notice we've restructured our docs. Please take note:
- Docs for end users of Acorn now live here: https://docs.acorn.io
- Docs for administrators who are installing and operating their own Acorn installs are here: https://runtime-docs.acorn.io/
We've removed support for an older version of of the Acornfile specification. This should affect very few people as we just removed some undocumented functionality, but if you notice that a previously working Acornfile stops working, reach out to us for support.
What's Changed
- Deduplicate endpoints for ingress that has port defined by @StrongMonkey in #2321
- Convert protocol, find matching port for endpoints by @StrongMonkey in #2323
- Wait for server to acknowledge app deletion before trying ignore-cleanup by @thedadams in #2324
- Stop trying to parse empty image names by @thedadams in #2325
- Update to new AML version by @ibuildthecloud in #2329
- Expand * verbs when doing SAR checks on images by @thedadams in #2330
- Revert "Expand * verbs when doing SAR checks on images" by @thedadams in #2331
- Add edit and secret edit command by @ibuildthecloud in #2332
- Add secret update and secret create --replace/--update by @ibuildthecloud in #2333
- add alias for acorn project cli by @keyallis in #2337
- Add ability to prompt for credential secrets (phase 1) by @ibuildthecloud in #2343
- Add containerreplicas/portforward permission to edit role by @thedadams in #2347
- Add login required for nested apps by @ibuildthecloud in #2346
- Cleaned up docs to focus on runtime. by @cloudnautique in #2345
- add: user directive in Acornfile (e.g.
user: "1000:1000"
) (#718) by @iwilltry42 in #2334 - add: 'acorn project use -' to switch to last used project (#1319) by @iwilltry42 in #2352
- add: volume preloading via
?preload=true
directive in Acornfile (manager#1598) by @iwilltry42 in #2351 - Add busybox init script by @tylerslaton in #2354
- Add acorn-busybox-init to .goreleaser extra_files section for arm64 by @tylerslaton in #2355
- Support .d dirs for acornfiles by @ibuildthecloud in #2358
- Set the Host header in the nginx router config by @thedadams in #2359
- Ignore auth failures when trying to pull apps during cli login by @keyallis in #2366
- Add feature flag to control whether we should add don't evict annotation by @StrongMonkey in #2360
- Add support for runtime classes on Acorn computeclasses by @cloudnautique in #2363
- Ensure that nginx does DNS lookups by @thedadams in #2368
- Add the new resolv nameserver copier to goreleaser file by @thedadams in #2370
- fix: replace / with - in anonymous ephemeral volume names (manager-specific) (manager#1598) by @iwilltry42 in #2362
- Remove temporary VolumeSize migration logic by @tylerslaton in #2319
- Revert "Remove temporary VolumeSize migration logic" by @tylerslaton in #2371
- More reliably determine when linked/aliased services are ready by @thedadams in #2373
- Remove -job suffix from generated service names by @njhale in #2374
- Resolved offerings by @g-linville in #2369
- Revert "Resolved offerings (#2369)" by @g-linville in #2376
- Add resolved offerings to the AppInstance status by @g-linville in #2377
- Add assistants and functions by @ibuildthecloud in #2388
- Fix memory values in resolved offerings (#2389) by @g-linville in #2390
- Add support for acorn.region interpolation in Acornfiles by @thedadams in #2391
- Drop legacy aml support by @ibuildthecloud in #2393
- Add resources field to computeclass #2380 by @dciangot in #2384
- ComputeClass request downscaling for overprovisioning (#2381) by @keyallis in #2394
- ComputeClass overprovisioning request floor ignores minimum (#2381) by @keyallis in #2396
- Update to k8s 1.29, remove all rancher code and go.mod replaces by @ibuildthecloud in #2397
- Change app generated namespace to be deterministic by @ibuildthecloud in #2398
- Add support to ignore resource requests/limits for local dev purposes by @keyallis in #2400
- fix: remove potential to panic when validating computeclass create requests by @tylerslaton in #2403
- Bump function builder by @ibuildthecloud in #2406
- Update goreleaser for tap deprecation by @ibuildthecloud in #2407
- Add local environment by @ibuildthecloud in #2412
- fix: resolved offerings: prioritize -m over Acornfile (#2415) by @g-linville in #2416
- fix: cli: return an error when creating a secret that already exists (#2408) by @g-linville in #2417
- Local fixes by @ibuildthecloud in #2419
- Add back buildkit volume by @ibuildthecloud in #2421
- fix: credential secrets: use defaults as defined in the Acornfile (#2411) by @g-linville in #2420
- [Docs] updates by @cloudnautique in #2418
- Fix malformed message when error is nil by @ibuildthecloud in #2424
- Create run directory to ensure xtables works in local by @ibuildthecloud in #2425
- Don't panic during acorn local start by @ibuildthecloud in #2426
- Add docker client API version negotiation by @ibuildthecloud in #2427
- fix: credential secrets: handle case where no default is set (#2411) by @g-linville in #2423
- fix: credential secrets: avoid race condition when prompting user (#2410) by @g-linville in #2422
- enhance: allow dots in e...
v0.10.0-rc5
What's Changed
- Deduplicate endpoints for ingress that has port defined by @StrongMonkey in #2321
- Convert protocol, find matching port for endpoints by @StrongMonkey in #2323
- Wait for server to acknowledge app deletion before trying ignore-cleanup by @thedadams in #2324
- Stop trying to parse empty image names by @thedadams in #2325
- Update to new AML version by @ibuildthecloud in #2329
- Expand * verbs when doing SAR checks on images by @thedadams in #2330
- Revert "Expand * verbs when doing SAR checks on images" by @thedadams in #2331
- Add edit and secret edit command by @ibuildthecloud in #2332
- Add secret update and secret create --replace/--update by @ibuildthecloud in #2333
- add alias for acorn project cli by @keyallis in #2337
- Add ability to prompt for credential secrets (phase 1) by @ibuildthecloud in #2343
- Add containerreplicas/portforward permission to edit role by @thedadams in #2347
- Add login required for nested apps by @ibuildthecloud in #2346
- Cleaned up docs to focus on runtime. by @cloudnautique in #2345
- add: user directive in Acornfile (e.g.
user: "1000:1000"
) (#718) by @iwilltry42 in #2334 - add: 'acorn project use -' to switch to last used project (#1319) by @iwilltry42 in #2352
- add: volume preloading via
?preload=true
directive in Acornfile (manager#1598) by @iwilltry42 in #2351 - Add busybox init script by @tylerslaton in #2354
- Add acorn-busybox-init to .goreleaser extra_files section for arm64 by @tylerslaton in #2355
- Support .d dirs for acornfiles by @ibuildthecloud in #2358
- Set the Host header in the nginx router config by @thedadams in #2359
- Ignore auth failures when trying to pull apps during cli login by @keyallis in #2366
- Add feature flag to control whether we should add don't evict annotation by @StrongMonkey in #2360
- Add support for runtime classes on Acorn computeclasses by @cloudnautique in #2363
- Ensure that nginx does DNS lookups by @thedadams in #2368
- Add the new resolv nameserver copier to goreleaser file by @thedadams in #2370
- fix: replace / with - in anonymous ephemeral volume names (manager-specific) (manager#1598) by @iwilltry42 in #2362
- Remove temporary VolumeSize migration logic by @tylerslaton in #2319
- Revert "Remove temporary VolumeSize migration logic" by @tylerslaton in #2371
- More reliably determine when linked/aliased services are ready by @thedadams in #2373
- Remove -job suffix from generated service names by @njhale in #2374
- Resolved offerings by @g-linville in #2369
- Revert "Resolved offerings (#2369)" by @g-linville in #2376
- Add resolved offerings to the AppInstance status by @g-linville in #2377
- Add assistants and functions by @ibuildthecloud in #2388
- Fix memory values in resolved offerings (#2389) by @g-linville in #2390
- Add support for acorn.region interpolation in Acornfiles by @thedadams in #2391
- Drop legacy aml support by @ibuildthecloud in #2393
- Add resources field to computeclass #2380 by @dciangot in #2384
- ComputeClass request downscaling for overprovisioning (#2381) by @keyallis in #2394
- ComputeClass overprovisioning request floor ignores minimum (#2381) by @keyallis in #2396
- Update to k8s 1.29, remove all rancher code and go.mod replaces by @ibuildthecloud in #2397
- Change app generated namespace to be deterministic by @ibuildthecloud in #2398
- Add support to ignore resource requests/limits for local dev purposes by @keyallis in #2400
- fix: remove potential to panic when validating computeclass create requests by @tylerslaton in #2403
- Bump function builder by @ibuildthecloud in #2406
- Update goreleaser for tap deprecation by @ibuildthecloud in #2407
- Add local environment by @ibuildthecloud in #2412
- fix: resolved offerings: prioritize -m over Acornfile (#2415) by @g-linville in #2416
- fix: cli: return an error when creating a secret that already exists (#2408) by @g-linville in #2417
- Local fixes by @ibuildthecloud in #2419
- Add back buildkit volume by @ibuildthecloud in #2421
- fix: credential secrets: use defaults as defined in the Acornfile (#2411) by @g-linville in #2420
- [Docs] updates by @cloudnautique in #2418
- Fix malformed message when error is nil by @ibuildthecloud in #2424
- Create run directory to ensure xtables works in local by @ibuildthecloud in #2425
- Don't panic during acorn local start by @ibuildthecloud in #2426
- Add docker client API version negotiation by @ibuildthecloud in #2427
- fix: credential secrets: handle case where no default is set (#2411) by @g-linville in #2423
- fix: credential secrets: avoid race condition when prompting user (#2410) by @g-linville in #2422
- enhance: allow dots in env vars by @iwilltry42 in #2428
- fix: credential secrets: avoid the race condition better (#2410) by @g-linville in #2431
- fix: hide compute class request scaler value from api output (2429) by @keyallis in #2430
- Use docker CLI logic to initialize API client so contexts work properly by @ibuildthecloud in #2437
- chore: use goreleaser version 1.23.0 by @thedadams in #2439
- fix: address issue with computeclass tables not converting properly by @tylerslaton in #2438
- chore: bump cosign to v2.2.2 for releases by @thedadams in #2440
- chore: update cosign arguments by @thedadams in #2441
New Contributors
Full Changelog: v0.9.2...v0.10.0-rc5
v0.10.0-rc2
What's Changed
- Deduplicate endpoints for ingress that has port defined by @StrongMonkey in #2321
- Convert protocol, find matching port for endpoints by @StrongMonkey in #2323
- Wait for server to acknowledge app deletion before trying ignore-cleanup by @thedadams in #2324
- Stop trying to parse empty image names by @thedadams in #2325
- Update to new AML version by @ibuildthecloud in #2329
- Expand * verbs when doing SAR checks on images by @thedadams in #2330
- Revert "Expand * verbs when doing SAR checks on images" by @thedadams in #2331
- Add edit and secret edit command by @ibuildthecloud in #2332
- Add secret update and secret create --replace/--update by @ibuildthecloud in #2333
- add alias for acorn project cli by @keyallis in #2337
- Add ability to prompt for credential secrets (phase 1) by @ibuildthecloud in #2343
- Add containerreplicas/portforward permission to edit role by @thedadams in #2347
- Add login required for nested apps by @ibuildthecloud in #2346
- Cleaned up docs to focus on runtime. by @cloudnautique in #2345
- add: user directive in Acornfile (e.g.
user: "1000:1000"
) (#718) by @iwilltry42 in #2334 - add: 'acorn project use -' to switch to last used project (#1319) by @iwilltry42 in #2352
- add: volume preloading via
?preload=true
directive in Acornfile (manager#1598) by @iwilltry42 in #2351 - Add busybox init script by @tylerslaton in #2354
- Add acorn-busybox-init to .goreleaser extra_files section for arm64 by @tylerslaton in #2355
- Support .d dirs for acornfiles by @ibuildthecloud in #2358
- Set the Host header in the nginx router config by @thedadams in #2359
- Ignore auth failures when trying to pull apps during cli login by @keyallis in #2366
- Add feature flag to control whether we should add don't evict annotation by @StrongMonkey in #2360
- Add support for runtime classes on Acorn computeclasses by @cloudnautique in #2363
- Ensure that nginx does DNS lookups by @thedadams in #2368
- Add the new resolv nameserver copier to goreleaser file by @thedadams in #2370
- fix: replace / with - in anonymous ephemeral volume names (manager-specific) (manager#1598) by @iwilltry42 in #2362
- Remove temporary VolumeSize migration logic by @tylerslaton in #2319
- Revert "Remove temporary VolumeSize migration logic" by @tylerslaton in #2371
- More reliably determine when linked/aliased services are ready by @thedadams in #2373
- Remove -job suffix from generated service names by @njhale in #2374
- Resolved offerings by @g-linville in #2369
- Revert "Resolved offerings (#2369)" by @g-linville in #2376
- Add resolved offerings to the AppInstance status by @g-linville in #2377
- Add assistants and functions by @ibuildthecloud in #2388
- Fix memory values in resolved offerings (#2389) by @g-linville in #2390
- Add support for acorn.region interpolation in Acornfiles by @thedadams in #2391
- Drop legacy aml support by @ibuildthecloud in #2393
- Add resources field to computeclass #2380 by @dciangot in #2384
- ComputeClass request downscaling for overprovisioning (#2381) by @keyallis in #2394
New Contributors
Full Changelog: v0.9.2...v0.10.0-rc2
v0.10.0-rc1
What's Changed
- Deduplicate endpoints for ingress that has port defined by @StrongMonkey in #2321
- Convert protocol, find matching port for endpoints by @StrongMonkey in #2323
- Wait for server to acknowledge app deletion before trying ignore-cleanup by @thedadams in #2324
- Stop trying to parse empty image names by @thedadams in #2325
- Update to new AML version by @ibuildthecloud in #2329
- Expand * verbs when doing SAR checks on images by @thedadams in #2330
- Revert "Expand * verbs when doing SAR checks on images" by @thedadams in #2331
- Add edit and secret edit command by @ibuildthecloud in #2332
- Add secret update and secret create --replace/--update by @ibuildthecloud in #2333
- add alias for acorn project cli by @keyallis in #2337
- Add ability to prompt for credential secrets (phase 1) by @ibuildthecloud in #2343
- Add containerreplicas/portforward permission to edit role by @thedadams in #2347
- Add login required for nested apps by @ibuildthecloud in #2346
- Cleaned up docs to focus on runtime. by @cloudnautique in #2345
- add: user directive in Acornfile (e.g.
user: "1000:1000"
) (#718) by @iwilltry42 in #2334 - add: 'acorn project use -' to switch to last used project (#1319) by @iwilltry42 in #2352
- add: volume preloading via
?preload=true
directive in Acornfile (manager#1598) by @iwilltry42 in #2351 - Add busybox init script by @tylerslaton in #2354
- Add acorn-busybox-init to .goreleaser extra_files section for arm64 by @tylerslaton in #2355
- Support .d dirs for acornfiles by @ibuildthecloud in #2358
- Set the Host header in the nginx router config by @thedadams in #2359
- Ignore auth failures when trying to pull apps during cli login by @keyallis in #2366
- Add feature flag to control whether we should add don't evict annotation by @StrongMonkey in #2360
- Add support for runtime classes on Acorn computeclasses by @cloudnautique in #2363
- Ensure that nginx does DNS lookups by @thedadams in #2368
- Add the new resolv nameserver copier to goreleaser file by @thedadams in #2370
- fix: replace / with - in anonymous ephemeral volume names (manager-specific) (manager#1598) by @iwilltry42 in #2362
- Remove temporary VolumeSize migration logic by @tylerslaton in #2319
- Revert "Remove temporary VolumeSize migration logic" by @tylerslaton in #2371
Full Changelog: v0.9.2...v0.10.0-rc1
v0.9.2
This is a follow-up to the v0.9.1 release to address a few bugs and enhancements. See the full changelog below.
What's Changed
- Avoid dev session region errors when no region is specified by @thedadams in #2291
- retry app rm on conflict by @keyallis in #2292
- Fix issue with parsing implied volumes by @tylerslaton in #2290
- Always update ready status/conditions by @ibuildthecloud in #2293
- Remove algolia for docs. by @cloudnautique in #2300
- Add public type for QuotaRequests by @tylerslaton in #2299
- Add pre-stop hooks for containers that expose ports by @thedadams in #2298
- Ignore not found errors when deleting pods by @thedadams in #2303
- Ignore external services when comparing hashes by @thedadams in #2304
- Refactor DeploySpec so that secrets are first by @thedadams in #2305
- Update run help to be more concise and useful by @cjellick in #2308
- Dashboard auto-complete by @cjellick in #2288
- Stop rerunning create jobs on non-generation bumping updates by @thedadams in #2307
- Update to point to runtime docs by @cloudnautique in #2309
- support http2 protocol (#1523) by @keyallis in #2306
- Adjust status calculations by @thedadams in #2310
- fix: typo by @testwill in #2230
- Fix internal registry not working on some storage classes by @ibuildthecloud in #2313
- Add ability to read port from svc.status.loadbalancer.port by @StrongMonkey in #2302
- Remove GH workflow for adding issue to project by @cjellick in #2315
- change: block devsessions if IAR is enabled (#2180) by @iwilltry42 in #2314
- Only set Status.Defaults.Volumes if it hasn't been set by @tylerslaton in #2297
- Enable generating endpoints with paths and exposing job ports. by @njhale in #2318
New Contributors
Full Changelog: v0.9.1...v0.9.2
v0.9.2-rc2
What's Changed
- Only set Status.Defaults.Volumes if it hasn't been set by @tylerslaton in #2297
- Enable generating endpoints with paths and exposing job ports. by @njhale in #2318
Full Changelog: v0.9.2-rc1...v0.9.2-rc2
v0.9.2-rc1
What's Changed
- Avoid dev session region errors when no region is specified by @thedadams in #2291
- retry app rm on conflict by @keyallis in #2292
- Fix issue with parsing implied volumes by @tylerslaton in #2290
- Always update ready status/conditions by @ibuildthecloud in #2293
- Remove algolia for docs. by @cloudnautique in #2300
- Add public type for QuotaRequests by @tylerslaton in #2299
- Add pre-stop hooks for containers that expose ports by @thedadams in #2298
- Ignore not found errors when deleting pods by @thedadams in #2303
- Ignore external services when comparing hashes by @thedadams in #2304
- Refactor DeploySpec so that secrets are first by @thedadams in #2305
- Update run help to be more concise and useful by @cjellick in #2308
- Dashboard auto-complete by @cjellick in #2288
- Stop rerunning create jobs on non-generation bumping updates by @thedadams in #2307
- Update to point to runtime docs by @cloudnautique in #2309
- support http2 protocol (#1523) by @keyallis in #2306
- Adjust status calculations by @thedadams in #2310
- fix: typo by @testwill in #2230
- Fix internal registry not working on some storage classes by @ibuildthecloud in #2313
- Add ability to read port from svc.status.loadbalancer.port by @StrongMonkey in #2302
- Remove GH workflow for adding issue to project by @cjellick in #2315
- change: block devsessions if IAR is enabled (#2180) by @iwilltry42 in #2314
New Contributors
Full Changelog: v0.9.1...v0.9.2-rc1