Skip to content
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
00c6865
categorize faq with headings
commit111 Dec 2, 2024
a66e751
add new warning/error messages section
commit111 Dec 2, 2024
d7b4388
add correct hyperlinks
commit111 Dec 2, 2024
bb3a6a5
delete old faq
commit111 Dec 2, 2024
d6f5e3f
rename faq2 to questions
commit111 Dec 2, 2024
cc1e73c
minor wording fix
commit111 Dec 2, 2024
26767d7
add comparison faq
commit111 Dec 2, 2024
23039d7
Merge branch 'main' into linda-refactor-faq
commit111 Dec 2, 2024
f4f539f
Merge branch 'main' into linda-refactor-faq
commit111 Dec 2, 2024
66a6e80
fix merge conflict
commit111 Dec 2, 2024
9c51fd3
Merge branch 'linda-refactor-faq' of https://github.com/commit111/def…
commit111 Dec 2, 2024
2d65fb7
categorize faq with headings
commit111 Dec 2, 2024
de8c141
add new warning/error messages section
commit111 Dec 2, 2024
64857a3
add correct hyperlinks
commit111 Dec 2, 2024
43fdef3
delete old faq
commit111 Dec 2, 2024
3402f6e
rename faq2 to questions
commit111 Dec 2, 2024
9ce65f2
minor wording fix
commit111 Dec 2, 2024
90414b0
add comparison faq
commit111 Dec 2, 2024
43f1e33
fix merge conflict
commit111 Dec 2, 2024
8f2d0e6
Merge branch 'linda-refactor-faq' of https://github.com/commit111/def…
commit111 Dec 2, 2024
e0cadcc
categorize faq with headings
commit111 Dec 2, 2024
94bb70e
add correct hyperlinks
commit111 Dec 2, 2024
0bc42e1
rename faq2 to questions
commit111 Dec 2, 2024
d0fb98e
Merge branch 'linda-refactor-faq' of https://github.com/commit111/def…
commit111 Dec 2, 2024
4002ef6
restored old faq for merge conflict
commit111 Dec 2, 2024
297243b
delete old faq file
commit111 Dec 3, 2024
1860a2b
restore faq file
commit111 Dec 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blog/2024-02-12-announcing-defang-public-beta.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Ever since we shipped our Private Beta in the summer of 2023, we have been worki

And so, today with our Public Beta, we are addressing this request. With today’s release of [Defang BYOC](https://docs.defang.io/docs/concepts/defang-byoc) (Bring-your-own-Cloud), you can now enjoy all the benefits of Defang **and** deploy applications to your own AWS account! Our Private Beta experience is still available as [Defang Playground](https://docs.defang.io/docs/concepts/defang-playground) for you to quickly and easily prototype applications and deploy them to our hosted environment.

You can learn more about Defang [here](https://docs.defang.io/docs/intro). Also check out our [tutorials](https://docs.defang.io/docs/category/tutorials), [samples](https://docs.defang.io/docs/samples), and [FAQ](https://docs.defang.io/docs/faq) to know more.
You can learn more about Defang [here](https://docs.defang.io/docs/intro). Also check out our [tutorials](https://docs.defang.io/docs/category/tutorials), [samples](https://docs.defang.io/docs/samples), and [FAQ](https://docs.defang.io/docs/category/faq) to know more.

**Try the Public Beta!**

Expand Down
9 changes: 9 additions & 0 deletions docs/faq/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"label": "FAQ",
"position": 600,
"link": {
"type": "generated-index",
"description": "Wondering about something? Check out one of the guides below for additional support."
}
}

86 changes: 86 additions & 0 deletions docs/faq/questions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
---
sidebar_position: 600
title: Frequently Asked Questions
description: Frequently asked questions about Defang.
---
import {Button, ButtonGroup, FormGroup, FormLabel} from "@mui/material"

# Frequently Asked Questions (FAQ)

## Deployment and Infrastructure

### Which cloud/region is the app being deployed to?

- In the [Defang Playground](../concepts/defang-playground.md), the app is deployed to AWS `us-west-2`. In the [Defang BYOC](../concepts/defang-byoc.md) model, the region is determined by your [Defang BYOC Provider](/docs/category/providers) settings.

### Can I bring my own AWS or other cloud account?

- Yes! Defang makes it easy to deploy your application to your own cloud account. Please check out the [Defang BYOC](../concepts/defang-byoc.md) documentation for more information.

### On AWS, can I deploy to services such as EC2, EKS, or Lambda?

- The current release includes support for containers only, deployed to ECS. We are still exploring how to support additional execution models such as VMs and functions-as-a-service. However, using our Pulumi provider, it is possible to combine Defang services with other native AWS resources.

### Can I access AWS storage services such as S3 or database services such as RDS? How?

- Yes! You can access AWS services in the AWS Dashboard as you normally would when you are [deploying to your AWS account](../providers/aws) using Defang. In fact, you can access whatever other resources exist in the cloud account you are using for [Defang BYOC](../concepts/defang-byoc.md).

### Do you plan to support other clouds?

- While we currently support [AWS](../concepts/defang-byoc#aws) for production and [DigitalOcean](../concepts/defang-byoc#digitalocean) in preview, we plan to support other clouds in future releases, such as [GCP](../providers/gcp.md) and [Azure](../providers/azure.md).

## Deployment Process

### Can I run production apps with Defang?

- Yes! Defang makes it easy to deploy your app on production-ready infrastructure in your own cloud account. For example, you can deploy your app to AWS with `defang up --provider=aws --mode=production`. Check out your preferred cloud provider on [Defang BYOC](../concepts/defang-byoc.md).

### Does Defang support blue/green deployments?

- Defang does not currently support Blue/Green deploys, but it does support rolling updates with the `production` deployment mode. `defang up --mode=production`.

### Does Defang support rolling deployments?

- Yes! Defang supports rolling updates with the `production` deployment mode. `defang up --mode=production`.

### Can I cancel a deployment once it has started?

- No. Once a deployment has started, it cannot be canceled. However, you can always deploy a new version of your app which will replace the current deployment.

### Will deploying a new version of my app cause downtime?

- If you have deployed your application with the `--mode=production` flag, Defang will use the _production_ deployment mode. This mode will provision your app with multiple replicas and will perform a rolling update to ensure zero downtime. If you use another deployment mode, you may experience downtime during the deployment, as Defang will not provision multiple replicas to save cost.

### Can I deploy multiple services at once?

- Yes! You can deploy multiple services at once by defining them in a single compose.yaml file. When you run `defang compose up`, Defang will deploy all the services defined in the file at once.

### Can I deploy a service that depends on another service?

- Defang does not currently support service dependencies. All services will be deployed simultaneously. Defang will however run multiple healthchecks before marking a service as healthy and spinning down any previously deployed services when using the `production` deployment mode.

## Feature Comparisons

### Is Defang a run-time platform?
- No. Defang is not a run-time platform. Instead, it lets you host and run your application on a [cloud provider](../category/providers) of your choice. You can think of it as a tool that makes it way easier to deploy to that cloud provider.

### What is the difference between Defang and platforms such as Vercel, fly.io, and Railway?
- Defang is a tool that helps you get your application deployed to a [cloud provider](../category/providers) of your choice, and it is not a platform. Unlike platforms, Defang does not host your application. We do provide [Defang Playground](../concepts/defang-playground), but it is meant to be used as a testing environment only.

### What is the difference between Defang and tools such as SST?
- Defang is cloud-agnostic and language-agnostic, meaning that it is designed to work with different [cloud providers](../category/providers), and programming languages. Since Defang is not tied to just one cloud or language, this allows for greater flexibility in a wide range of cases. Another difference is that Defang follows the [Compose specification](https://docs.docker.com/compose/compose-file/), allowing it to work smoothly with various container platforms such as Docker.

## Troubleshooting

### I'm having trouble running the binary on my Mac. What should I do?

- MacOS users will need to allow the binary to run due to security settings:
1. Attempt to run the binary. You'll see a security prompt preventing you from running it.
2. Go to System Preferences > Privacy & Security > General.
3. In the 'Allow applications downloaded from:' section, you should see a message about Defang being blocked. Click 'Open Anyway'.
4. Alternatively, select the option "App Store and identified developers" to allow all applications from the App Store and identified developers to run.

### I'm getting a warning/error. What does it mean?

- Please see the [Common Error Messages](./warnings-errors.md) page.

133 changes: 133 additions & 0 deletions docs/faq/warnings-errors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
---
sidebar_position: 700
title: Common Error Messages
description: Common warnings and error messages, and their meanings.
---

Here are the meanings of common [warning](#warnings) and [error](#errors) messages you may encounter in the Defang CLI.

## Warnings

### "The folder is not empty. Files may be overwritten."
- This message is displayed when you run `defang generate` and the target folder is not empty. If you proceed, Defang will overwrite any existing files with the same name. If you want to keep the existing files, you should move them to a different folder before running `defang generate` or pick a different target folder.

### "environment variable not found"
- This message is displayed when you run `defang compose up` and the Compose file references an environment variable that is not set. If you proceed, the environment variable will be empty in the container. If you want to set the environment variable, you should set it in the environment where you run `defang compose up`.

### "Unsupported platform"
- This message is displayed when you run `defang compose up` and the Compose file references a platform that is not supported by Defang.

### "not logged in"
- This message is displayed when you run `defang compose config` but you are not logged in. The displayed configuration will be incomplete. If you want to see the complete configuration, you should log in first using `defang login`.

### "No port mode was specified; assuming 'host'"
- This message is displayed when you run `defang compose up` and the Compose file declares a `port` that does not specify a port `mode`. By default, Defang will keep the port private. If you want to expose the port to the public internet, you should specify the `mode` as `ingress`:
```
services:
service1:
ports:
- target: 80
mode: ingress
```

### "Published ports are not supported in ingress mode; assuming 'host'"
- This message is displayed when you run `defang compose up` and the Compose file declares a `port` with `mode` set to `ingress` and `published` set to a port number. Defang does not support published ports in ingress mode. If you want to expose the port to the public internet, you should specify the `mode` as `ingress` and remove the `published` setting.

### "TCP ingress is not supported; assuming HTTP"
- This message is displayed when you run `defang compose up` and the Compose file declares a `port` with `mode` set to `ingress` and `protocol` set to `tcp`. Defang does not support arbitrary TCP ingress and will assume the port is used for HTTP traffic. To silence the warning, remove the `protocol` setting.

### "unsupported compose directive"
- This message is displayed when you run `defang compose up` and the Compose file declares a directive that is not supported by Defang. The deployment will continue, but the unsupported directive will be ignored, which may cause unexpected behavior.

### "no reservations specified; using limits as reservations"
- This message is displayed when you run `defang compose up` and the Compose file declares a `resource` with `limits` but no `reservations`. Defang will use the `limits` as `reservations` to ensure the container has enough resources. Specify `reservations` if you want to silence the warning or reserve a different amount of resources:
```
services:
service1:
deploy:
resources:
reservations:
cpus: 0.5
memory: 512MB
```

### "ingress port without healthcheck defaults to GET / HTTP/1.1"
- This message is displayed when you run `defang compose up` and the Compose file declares an `ingress` with a `port` but no `healthcheck`. Defang will assume the default healthcheck of `GET / HTTP/1.1` to ensure the port is healthy. Specify a `healthcheck` if you want to silence the warning or use a different healthcheck:
```
services:
service1:
deploy:
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/health"]
```

### "missing memory reservation; specify deploy.resources.reservations.memory to avoid out-of-memory errors"
- This message is displayed when you run `defang compose up` and the Compose file doesn't specify a `memory` reservation. If available, Defang will use the `memory` limit as the `memory` reservation. Specify a `memory` reservation if you want to silence the warning or reserve a different amount of memory:
```
services:
service1:
deploy:
resources:
reservations:
memory: 512MB
```

### "The build context contains more than 10 files"
- This message is displayed when you run `defang compose up` and the Compose file declares a `build` with a `context` that contains more than 10 files. Ensure the context refers to the correct folder. Defang will use the `context` as is, but you may experience slow build times. If you want to speed up the build, you should reduce the number of files in the `context`.

### "AWS provider was selected, but AWS environment variables are not set"
- This message is displayed when you run `defang compose up` with the `--provider=aws` but none of the AWS environment variables were set. If you proceed, the deployment might fail, unless you have defined defined `default` credentials in the AWS configuration files or are running on an AWS instance.

### "Using Defang provider, but AWS environment variables were detected"
- This message is displayed when you run `defang compose up` with the `--provider=defang` but AWS environment variables were detected. The AWS environment variables will be ignored.

## Errors

### "Stack:… is in UPDATE_COMPLETE_CLEANUP_IN_PROGRESS state and cannot be updated"
- This happens if different version of the Defang CLI are used with the same AWS account. Each version one will try to update the CD stack to its version, back and forth. Make sure that all users have the same version of the CLI. Check the CLI version using `defang version`.

### "invalid healthcheck: ingress ports require an HTTP healthcheck on `localhost`.

- This message is displayed when `defang compose up` tries to deploy a service with an "ingress" port, if the service does not have a `healthcheck` which mentions `localhost`. Defang routes a load balancer to your service's ingress ports, and the loadbalancer needs to be able to check the health of the service. To solve this issue, ask yourself these two questions:

1. Should my service be public? It's common to declare your container's ports using the Compose file "shorthand" syntax (`1234:1234`). This syntax can be understood as `[HOST:]CONTAINER`. If your service is not intended to be public, you do not need to declare a HOST port. For example:

```diff
services:
my-service:
image: my-image
ports:
- - "1234:1234"
+ - "1234"
```
2. Does my healthcheck include the string `localhost`? It is very common to define a healthcheck by using `curl` or `wget` to make a request to `localhost`. So common, in fact, that defang will look for the string `localhost` in your healthcheck definition. For example, this healthcheck is valid:

```yaml
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:1234/health"]
```

This healthcheck is not valid for `ingress` ports:

```yaml
healthcheck:
test: ["CMD", "./my-healthcheck"]
```

### The build aborted with OutOfMemoryError: Container killed due to memory usage

The image build might fail if the build process uses too much memory. The first thing to try is to limit the size of your project by excluding unnecessary files: the easiest way is to create a `.dockerignore` file that excludes irrelevatn files. Note that Defang will use a default `.dockerignore` file if you don't have one, but that default might not work for some projects and it's always better to make a `.dockerignore` file specific to your project.

If that doesn't work, you can try to increase the memory available to the build process by adding a field `shm_size` to the `build` section in your `compose.yaml` file:

```yaml
services:
service1:
build:
context: .
shm_size: 16g
```
Loading