Skip to content
Open
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
29 changes: 19 additions & 10 deletions konf/site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ env:
secretKeyRef:
key: app-secret
name: proctor360

- name: PROCTOR360_APP_ID
secretKeyRef:
key: app-id
Expand All @@ -161,7 +161,6 @@ env:
key: secret
name: sitemaps


memoryLimit: 512Mi

extraHosts:
Expand Down Expand Up @@ -297,20 +296,20 @@ production:
secretKeyRef:
key: api-key
name: trueability

- name: PROCTOR360_BASE_URL
value: https://prod1ext.proctor360.com

- name: PROCTOR360_APP_SECRET
secretKeyRef:
key: app-secret
name: proctor360

- name: PROCTOR360_APP_ID
secretKeyRef:
key: app-id
name: proctor360

- name: MARKETO_API_CLIENT
secretKeyRef:
key: api_client
Expand Down Expand Up @@ -707,7 +706,7 @@ staging:
secretKeyRef:
key: app-secret
name: proctor360

- name: PROCTOR360_APP_ID
secretKeyRef:
key: app-id
Expand Down Expand Up @@ -770,13 +769,13 @@ staging:
env:
- name: HTTPS_PROXY
value: http://squid.ps6.internal:3128

- name: HTTP_PROXY
value: http://squid.ps6.internal:3128

- name: NO_PROXY
value: "10.24.0.132,10.24.0.23,.internal,ubuntu.com,.ubuntu.com,snapcraft.io,.snapcraft.io,jujucharms.com,.jujucharms.com,maas.io,.maas.io,conjure-up.io,.conjure-up.io,netplan.io,.netplan.io,canonical.com,.canonical.com,launchpad.net,.launchpad.net,linuxcontainers.org,.linuxcontainers.org,cloud-init.io,.cloud-init.io,vanillaframework.io,.vanillaframework.io,anbox-cloud.io,.anbox-cloud.io,juju.is,.juju.is,dqlite.io,.dqlite.io,charmhub.io,.charmhub.io,canonical.design,.canonical.design"

- name: SEARCH_API_KEY
secretKeyRef:
key: google-custom-search-key
Expand Down Expand Up @@ -866,7 +865,7 @@ staging:
secretKeyRef:
key: app-secret
name: proctor360

- name: PROCTOR360_APP_ID
secretKeyRef:
key: app-id
Expand Down Expand Up @@ -1220,7 +1219,7 @@ demo:
secretKeyRef:
key: app-secret
name: proctor360

- name: PROCTOR360_APP_ID
secretKeyRef:
key: app-id
Expand All @@ -1241,3 +1240,13 @@ demo:

- name: CANONICAL_CLA_API_URL
value: https://cla.staging.canonical.com

nginxConfigurationSnippet: |
limit_req_zone $binary_remote_addr zone=marketo:50m rate=1r/s;

nginxServerSnippet: |
location ^~ /marketo/submit/ {
limit_req zone=marketo burst=20;
limit_req_status 429;
limit_req_log_level warn;
}
Loading