Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce more generous resource requests and remove duplicate file #5602

Closed
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
123 changes: 0 additions & 123 deletions charts/flyte-binary/eks-production.yaml

This file was deleted.

10 changes: 4 additions & 6 deletions charts/flyte-binary/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,10 @@ deployment:
# lifecycleHooks Specify hooks to run in Flyte container before or after startup
lifecycleHooks: {}
# resources Resource limits and requests for Flyte container
# Uncomment and update to specify resources for deployment
# resources:
# limits:
# memory: 1Gi
# requests:
# cpu: 1
resources:
requests:
cpu: "4"
memory: "4Gi"
# podSecurityContext Specify security context for Flyte pod
# See: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
podSecurityContext:
Expand Down
15 changes: 0 additions & 15 deletions docs/deployment/configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,7 @@
This section will cover how to configure your Flyte cluster for features like
authentication, monitoring, and notifications.

````{important}
The configuration instructions in this section are for the `flyte` and `flyte-core` Helm charts, which is for
the {ref}`multi-cluster setup <deployment-deployment-multicluster>`.

If you're using the `flyte-binary` chart for the {ref}`single cluster setup <deployment-deployment-cloud-simple>`,
instead of specifying configuration under a yaml file like `cloud_events.yaml` in {ref}`deployment-configuration-cloud-event`,
you'll need to add the configuration settings under the `inline` section in the `eks-production.yaml` file:

```{eval-rst}
.. literalinclude:: ../../../charts/flyte-binary/eks-production.yaml
:language: yaml
:lines: 30-41
:caption: charts/flyte-binary/eks-production.yaml
```

````


```{list-table}
Expand Down
Loading