-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,7 +122,8 @@ Helm Chart for Geonode a web-based application and platform for developing geosp | |
| geonode.resources.limits.memory | string | `"2Gi"` | limits memory as in resource.limits.memory (https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) | | ||
| geonode.resources.requests.cpu | int | `1` | requested cpu as in resource.requests.cpu (https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) | | ||
| geonode.resources.requests.memory | string | `"1Gi"` | requested memory as in resource.requests.memory (https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) | | ||
| geonode.secret.content | object | `{"email":"[email protected]","password":"geonode","username":"admin"}` | Values of the Secret. If empty, the Secret will not be created from template. In this case, you have to either create the Secret on your own (you may choose a different name). | | ||
| geonode.secret.content | object | `{"superuser":{"email":"[email protected]","password":"geonode","username":"admin"}}` | Values of the Secret. If empty, the Secret will not be created from template. In this case, you have to either create the Secret on your own (you may choose a different name). | | ||
| geonode.secret.createFromContent | bool | `true` | if Secret shall be created based on the values of `secret.content`. | | ||
| geonode.secret.name | string | `"geonode-secret"` | name of the secret to use. Change, if you want to maintain them separately. | | ||
| geonode.sentry.build_number | int | `0` | sentry build number | | ||
| geonode.sentry.dsn | string | `""` | sentry dsn url | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,11 +34,14 @@ geonode: | |
secret: | ||
# -- name of the secret to use. Change, if you want to maintain them separately. | ||
name: geonode-secret | ||
# -- if Secret shall be created based on the values of `secret.content`. | ||
createFromContent: True | ||
# -- Values of the Secret. If empty, the Secret will not be created from template. In this case, you have to either create the Secret on your own (you may choose a different name). | ||
content: | ||
username: admin | ||
password: geonode | ||
email: [email protected] | ||
superuser: | ||
username: admin | ||
password: geonode | ||
email: [email protected] | ||
|
||
resources: | ||
requests: | ||
|