chore: reduce max instances from 20 to 10 (#6)
This commit is contained in:
parent
c691a04c7b
commit
9408bf6598
|
|
@ -4,7 +4,7 @@
|
|||
import { Container } from '@cloudflare/containers';
|
||||
import type { KVNamespace } from '@cloudflare/workers-types';
|
||||
|
||||
const INSTANCE_COUNT = 20;
|
||||
const INSTANCE_COUNT = 10;
|
||||
|
||||
export class RSSHubContainer extends Container {
|
||||
defaultPort = 1200;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ enabled = true
|
|||
[[containers]]
|
||||
class_name = "RSSHubContainer"
|
||||
image = "registry.cloudflare.com/CLOUDFLARE_ACCOUNT_ID/rsshub:9aa55f54afc463b353acd59e49bd543dea788eea"
|
||||
max_instances = 20
|
||||
max_instances = 10
|
||||
instance_type = "standard-1"
|
||||
|
||||
# Durable Object binding for the container
|
||||
|
|
|
|||
Loading…
Reference in New Issue