Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove some deprecated parameters and add a few extra #763

Merged
merged 1 commit into from
Jun 15, 2018
Merged
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
17 changes: 5 additions & 12 deletions openshift/apicast-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ objects:
value: "${SERVICES_LIST}"
- name: APICAST_CONFIGURATION_LOADER
value: "${CONFIGURATION_LOADER}"
- name: APICAST_BACKEND_CACHE_HANDLER
value: "${BACKEND_CACHE_HANDLER}"
- name: APICAST_LOG_LEVEL
value: "${LOG_LEVEL}"
- name: APICAST_PATH_ROUTING
Expand All @@ -52,14 +50,14 @@ objects:
value: "${CONFIGURATION_CACHE}"
- name: REDIS_URL
value: "${REDIS_URL}"
- name: APICAST_OAUTH_TOKENS_TTL
value: "${OAUTH_TOKENS_TTL}"
- name: APICAST_MANAGEMENT_API
value: "${MANAGEMENT_API}"
- name: OPENSSL_VERIFY
value: "${OPENSSL_VERIFY}"
- name: APICAST_REPORTING_THREADS
value: "${REPORTING_THREADS}"
- name: APICAST_WORKERS
value: "${APICAST_WORKERS}"
image: "${IMAGE_NAME}"
imagePullPolicy: Always
name: "${APICAST_NAME}"
Expand Down Expand Up @@ -122,6 +120,9 @@ parameters:
value: apicast
name: APICAST_NAME
required: true
- description: "Number of worker processes to start."
name: APICAST_WORKERS
required: false
- description: "DNS Resolver for openresty, if empty it will be autodiscovered"
value:
name: RESOLVER
Expand All @@ -134,10 +135,6 @@ parameters:
description: "When to load configuration. If on gateway start or incoming request. Allowed values are: lazy, boot."
value: boot
required: false
- name: BACKEND_CACHE_HANDLER
description: "How to handle and cache backend authorization responses. Can be one of: strict, resilient."
value: strict
required: false
- description: "Log level. One of the following: debug, info, notice, warn, error, crit, alert, or emerg."
name: LOG_LEVEL
required: false
Expand All @@ -156,10 +153,6 @@ parameters:
- description: "Redis URL. Required for OAuth2 integration. ex: redis://[email protected]:6379/0"
name: REDIS_URL
required: false
- description: "TTL (in seconds) of the oauth tokens created."
name: OAUTH_TOKENS_TTL
required: false
value: "604800"
- name: MANAGEMENT_API
description: "Scope of the Management API. Can be disabled, status or debug. At least status required for health checks."
required: false
Expand Down