jumppad
jumppad copied to clipboard
Modern cloud native development environments
Figure out UX for apply Options 1 - Apply with a url Automatically clones the blueprint and copies into $HOME/.shipyard/blueprints before running ``` yard apply https://github.com/blueprints/consul-routing ``` Does not add...
Is the current process for Ingress the best approach? We have thought about differing approaches for Ingress to move this into a single container, however finding a balance between UX...
➜ shipyard status STATUS RESOURCE FQDN [ CREATED ] image_cache.docker-cache docker-cache.image-cache.shipyard.run [ DISABLED ] template.bootstrap_certs_acls [ CREATED ] template.consul_values [ CREATED ] template.fetch_consul_resources [ CREATED ] template.grafana_secret_template [ CREATED ]...
**Describe the bug** Shipyard destroy with a directory or git path does not destroy resources. Use case: development on more than one project, each with their own blueprint or in...
The default for the `docker_host()` function does not include the `unix://` path prefix. This causes issues when used in exec resources.
Added initial support for module registries. Depends on https://github.com/jumppad-labs/hclconfig/pull/19
- https://github.com/jumppad-labs/jumppad/releases/tag/0.6.0 - https://github.com/jumppad-labs/jumppad/releases/tag/0.7.0 checksums.txt and *.rpm were missing from GitHub Releases. Is this change expected? Could you release checksums.txt? We don't use *.rpm so we don't care about them....
The HTTP resource allows you to execute HTTP requests and use the response in other resources. ```hcl resource "http" "get" { method = "GET" url = "https://httpbin.org/get" headers = {...
Copy files from remote sources such as git, http, etc. ```hcl resource "copy" "local" { source = "${dir()}/files/foo" destination = "${data("copy")}/local" } resource "copy" "http" { source = "https://www.foundanimals.org/wp-content/uploads/2023/02/twenty20_b4e89a76-af70-4567-b92a-9c3bbf335cb3.jpg" destination...