Skip to content
This repository was archived by the owner on Aug 21, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all 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
14 changes: 7 additions & 7 deletions packages/ops/configs/dev.template.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ client:
type: NodePort
domain: <domain>
sql:
database: <db_name>
password: <password>
user: <username>
host: <RDS hostname>
database: <SQL database name, e.g. etherealengine, not RDS ID>
password: <SQL admin user password>
user: <SQL admin username>
host: <RDS hostname, a.k.a. Endpoint>
port: 3306
rts:
extraEnv:
Expand Down Expand Up @@ -395,9 +395,9 @@ builder:
extraEnv:
NODE_ENV: production
RELEASE_NAME: <RELEASE_NAME>
AWS_ACCESS_KEY: <AWS_ACCESS_KEY>
AWS_SECRET: <AWS_SECRET>
AWS_REGION: <AWS_REGION
AWS_ACCESS_KEY: <GITHUB_ACTIONS_USER_AWS_ACCESS_KEY>
AWS_SECRET: <GITHUB_ACTIONS_USER_AWS_SECRET>
AWS_REGION: <EKS_CLUSTER_AWS_REGION>
CLUSTER_NAME: <CLUSTER_NAME>
ECR_URL: <ECR_URL>
REPO_NAME: <REPO_NAME>
Expand Down
6 changes: 3 additions & 3 deletions packages/ops/configs/local.template.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,9 @@ builder:
extraEnv:
NODE_ENV: production
RELEASE_NAME: <RELEASE_NAME>
AWS_ACCESS_KEY: <AWS_ACCESS_KEY>
AWS_SECRET: <AWS_SECRET>
AWS_REGION: <AWS_REGION
AWS_ACCESS_KEY: <GITHUB_ACTIONS_USER_AWS_ACCESS_KEY>
AWS_SECRET: <GITHUB_ACTIONS_USER_AWS_SECRET>
AWS_REGION: <EKS_CLUSTER_AWS_REGION>
CLUSTER_NAME: <CLUSTER_NAME>
ECR_URL: <ECR_URL>
REPO_NAME: <REPO_NAME>
Expand Down
14 changes: 7 additions & 7 deletions packages/ops/configs/prod.template.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ client:
type: NodePort
domain: <domain>
sql:
database: <db_name>
password: <password>
user: <username>
host: <RDS hostname>
database: <SQL database name, e.g. etherealengine, not RDS ID>
password: <SQL admin user password>
user: <SQL admin username>
host: <RDS hostname, a.k.a. Endpoint>
port: 3306
rts:
extraEnv:
Expand Down Expand Up @@ -335,9 +335,9 @@ builder:
extraEnv:
NODE_ENV: production
RELEASE_NAME: <RELEASE_NAME>
AWS_ACCESS_KEY: <AWS_ACCESS_KEY>
AWS_SECRET: <AWS_SECRET>
AWS_REGION: <AWS_REGION
AWS_ACCESS_KEY: <GITHUB_ACTIONS_USER_AWS_ACCESS_KEY>
AWS_SECRET: <GITHUB_ACTIONS_USER_AWS_SECRET>
AWS_REGION: <EKS_CLUSTER_AWS_REGION>
CLUSTER_NAME: <CLUSTER_NAME>
ECR_URL: <ECR_URL>
REPO_NAME: <REPO_NAME>
Expand Down