Skip to content
This repository was archived by the owner on Mar 16, 2024. It is now read-only.
This repository was archived by the owner on Mar 16, 2024. It is now read-only.

Apps with jobs that only run on delete don't become ready #1646

@thedadams

Description

@thedadams

If a user creates an app with the following Acornfile, the app will be stuck in a "pending" status and will never become ready.

containers: web: {
	image: "nginx"
	ports: publish: "80/http"
	files: {
		"/usr/share/nginx/html/index.html": "<h1>My First Acorn!!</h1>"
	}
}

jobs: "delete-job": {
	image: "busybox"
	command: ["sleep", "10s"]
	events: ["delete"]
}

Metadata

Metadata

Assignees

Labels

kind/bugSomething isn't working

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions