|
@@ -44,15 +44,19 @@ spec:
|
|
|
{% if kibana_cpu_limit is not none %}
|
|
|
cpu: "{{kibana_cpu_limit}}"
|
|
|
{% endif %}
|
|
|
-{% if kibana_memory_limit is not none %}
|
|
|
- memory: "{{kibana_memory_limit}}"
|
|
|
-{% endif %}
|
|
|
+ memory: "{{kibana_memory_limit | default('736Mi') }}"
|
|
|
{% endif %}
|
|
|
env:
|
|
|
- name: "ES_HOST"
|
|
|
value: "{{es_host}}"
|
|
|
- name: "ES_PORT"
|
|
|
value: "{{es_port}}"
|
|
|
+ -
|
|
|
+ name: "KIBANA_MEMORY_LIMIT"
|
|
|
+ valueFrom:
|
|
|
+ resourceFieldRef:
|
|
|
+ containerName: kibana
|
|
|
+ resource: limits.memory
|
|
|
volumeMounts:
|
|
|
- name: kibana
|
|
|
mountPath: /etc/kibana/keys
|
|
@@ -67,9 +71,7 @@ spec:
|
|
|
{% if kibana_proxy_cpu_limit is not none %}
|
|
|
cpu: "{{kibana_proxy_cpu_limit}}"
|
|
|
{% endif %}
|
|
|
-{% if kibana_proxy_memory_limit is not none %}
|
|
|
- memory: "{{kibana_proxy_memory_limit}}"
|
|
|
-{% endif %}
|
|
|
+ memory: "{{kibana_proxy_memory_limit | default('96Mi') }}"
|
|
|
{% endif %}
|
|
|
ports:
|
|
|
-
|
|
@@ -103,6 +105,27 @@ spec:
|
|
|
-
|
|
|
name: "OAP_DEBUG"
|
|
|
value: "{{openshift_logging_kibana_proxy_debug}}"
|
|
|
+ -
|
|
|
+ name: "OAP_OAUTH_SECRET_FILE"
|
|
|
+ value: "/secret/oauth-secret"
|
|
|
+ -
|
|
|
+ name: "OAP_SERVER_CERT_FILE"
|
|
|
+ value: "/secret/server-cert"
|
|
|
+ -
|
|
|
+ name: "OAP_SERVER_KEY_FILE"
|
|
|
+ value: "/secret/server-key"
|
|
|
+ -
|
|
|
+ name: "OAP_SERVER_TLS_FILE"
|
|
|
+ value: "/secret/server-tls.json"
|
|
|
+ -
|
|
|
+ name: "OAP_SESSION_SECRET_FILE"
|
|
|
+ value: "/secret/session-secret"
|
|
|
+ -
|
|
|
+ name: "OCP_AUTH_PROXY_MEMORY_LIMIT"
|
|
|
+ valueFrom:
|
|
|
+ resourceFieldRef:
|
|
|
+ containerName: kibana-proxy
|
|
|
+ resource: limits.memory
|
|
|
volumeMounts:
|
|
|
- name: kibana-proxy
|
|
|
mountPath: /secret
|