Skip to content

Commit

Permalink
fixing aws-configuration error
Browse files Browse the repository at this point in the history
  • Loading branch information
EliseCastle23 committed Dec 6, 2024
1 parent fadd642 commit 564bea2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions helm/gen3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@ Helm chart to deploy Gen3 Data Commons
| revproxy.ingress.enabled | bool | `false` | Whether to create the custom revproxy ingress |
| revproxy.ingress.hosts | list | `[{"host":"chart-example.local"}]` | Where to route the traffic. |
| revproxy.ingress.tls | list | `[]` | To secure an Ingress by specifying a secret that contains a TLS private key and certificate. |
| secrets | map | `{"awsAccessKeyId":null,"awsSecretAccessKey":null}` | Secret information for External Secrets and DB Secrets. |
| secrets.awsAccessKeyId | str | `nil` | AWS access key ID. Overrides global key. |
| secrets.awsSecretAccessKey | str | `nil` | AWS secret access key ID. Overrides global key. |
| sheepdog.enabled | bool | `true` | Whether to deploy the sheepdog subchart. |
| ssjdispatcher.enabled | bool | `false` | Whether to deploy the ssjdispatcher subchart. |
| wts.enabled | bool | `true` | Whether to deploy the wts subchart. |
7 changes: 7 additions & 0 deletions helm/gen3/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -321,3 +321,10 @@ neuvector:
DB_HOST: development-gen3-postgresql
# hostname/service name for our ElasitcSearch instance, used to allow egress from containers
ES_HOST: gen3-elasticsearch-master

# -- (map) Secret information for External Secrets and DB Secrets.
secrets:
# -- (str) AWS access key ID. Overrides global key.
awsAccessKeyId:
# -- (str) AWS secret access key ID. Overrides global key.
awsSecretAccessKey:

Check failure on line 330 in helm/gen3/values.yaml

View workflow job for this annotation

GitHub Actions / lint-test

330:22 [new-line-at-end-of-file] no new line character at the end of file
2 changes: 1 addition & 1 deletion helm/sower/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ A Helm chart for gen3 sower
| resources.requests | map | `{"cpu":"100m","memory":"20Mi"}` | The amount of resources that the container requests |
| resources.requests.cpu | string | `"100m"` | The amount of CPU requested |
| resources.requests.memory | string | `"20Mi"` | The amount of memory requested |
| secrets | map | `{"awsAccessKeyId":null,"awsSecretAccessKey":null}` | Secret information for Usersync and External Secrets. |
| secrets | map | `{"awsAccessKeyId":null,"awsSecretAccessKey":null}` | Values for sower secrets and keys for External Secrets. |
| secrets.awsAccessKeyId | str | `nil` | AWS access key ID. Overrides global key. |
| secrets.awsSecretAccessKey | str | `nil` | AWS access key ID. Overrides global key. |
| securityContext | map | `{}` | Security context for the containers in the pod |
Expand Down
2 changes: 1 addition & 1 deletion helm/sower/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ externalSecrets:
# -- (string) Will override the name of the aws secrets manager secret. Default is "sower-jobs-g3auto"
sowerjobsG3auto:

# -- (map) Secret information for Usersync and External Secrets.
# -- (map) Values for sower secrets and keys for External Secrets.
secrets:
# -- (str) AWS access key ID. Overrides global key.
awsAccessKeyId:
Expand Down

0 comments on commit 564bea2

Please sign in to comment.