Skip to content

Commit

Permalink
feat: change DRYDOCK_INGRESS default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrrypg committed Oct 31, 2024
1 parent 8f750aa commit 6bb7857
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ appropriate one:
| Palm | `>=16.0, <17` | Not supported | 16.x.x |
| Quince | `>=17.0, <18` | `quince` | 17.x.x |
| Redwood | `>=18.0, <19` | `redwood` | 18.x.x |
| Sumac | `>=19.0, <20` | `main` | >=19.0.0 |
| Sumac | `>=19.0, <20` | `main` | >=19.0.0 |

Installation
------------
Expand All @@ -58,7 +58,7 @@ The following configuration options are available:
- `DRYDOCK_INIT_JOBS`: Whether run the initialization jobs or not. Defaults to `false`.
- `DRYDOCK_CMS_SSO_USER`: The username of the CMS SSO user. Defaults to `cms`.
- `DRYDOCK_AUTO_TLS`: Whether to use cert-manager to automatically generate TLS certificates. Defaults to `true`.
- `DRYDOCK_INGRESS`: Whether to deploy an ingress for the LMS and CMS. Defaults to `false`.
- `DRYDOCK_INGRESS`: Whether to deploy an ingress for the LMS and CMS. Defaults to `true`.
- `DRYDOCK_INGRESS_EXTRA_HOSTS`: A list of extra hosts to add to the ingress. Defaults to `[]`.
- `DRYDOCK_INGRESS_LMS_EXTRA_HOSTS`: A list of extra hosts to add to the LMS ingress. Defaults to `[]`.
- `DRYDOCK_CUSTOM_CERTS`: A dictionary of custom certificates to use with cert-manager. Defaults to `{}`.
Expand Down
2 changes: 1 addition & 1 deletion drydock/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def get_sync_waves_for_resource(resource_name: str) -> SYNC_WAVES_ORDER_ATTRS_TY
"CMS_SSO_USER": "cms",
"AUTO_TLS": True,
"MIGRATE_FROM": 0,
"INGRESS": False,
"INGRESS": True,
"INGRESS_EXTRA_HOSTS": [],
"INGRESS_LMS_EXTRA_HOSTS": [],
"NEWRELIC_LICENSE_KEY": "",
Expand Down

0 comments on commit 6bb7857

Please sign in to comment.