summaryrefslogtreecommitdiff
path: root/roles/openshift_logging_kibana
AgeCommit message (Collapse)Author
2018-02-10Fix indentation to make yamllint happyVadim Rutkovsky
Signed-off-by: Vadim Rutkovsky <vrutkovs@redhat.com>
2018-02-10Verify that requested services have schedulable nodes matching the selectorsVadim Rutkovsky
Signed-off-by: Vadim Rutkovsky <vrutkovs@redhat.com>
2018-02-08Set default image tag to openshift_image_tag for servicesVadim Rutkovsky
Signed-off-by: Vadim Rutkovsky <vrutkovs@redhat.com>
2018-02-06Merge pull request #7015 from sdodson/v310Scott Dodson
Initial support for 3.10
2018-02-05Initial support for 3.10Scott Dodson
2018-02-05Adding support for ES 5.x tech preview opt inEric Wolinetz
2018-01-26allow setting of kibana env varsJeff Cantrill
2018-01-09Bug 1527178 - installation of logging stack failed: Invalid version ↵Noriko Hosoi
specified for Elasticsearch openshift_logging_{curator,elasicsearch,fluentd,kibana,mux}/vars/main.yml: - adding "3_9" to __allowed_.*_versions - bumping __latest_.*_version to "3_9"
2017-12-27Bug 1527178 - installation of logging stack failed: Invalid version ↵Noriko Hosoi
specified for Elasticsearch openshift_logging_{curator,elasicsearch,fluentd,kibana,mux}/vars/main.yml: - adding "3_8" to __allowed_.*_versions - replacing the value of __latest_.*_version "3_6" with "3_8".
2017-12-21Remove references to deployment_typeMichael Gugino
Move openshift_deployment_type check into sanity_check action plugin. Remove compatibility for deployment_type. deployment_type has been deprecated for some time now.
2017-12-18Relocate filter plugins to lib_utilsMichael Gugino
This commit relocates filter_plugings to lib_utils, changes the namespacing to prevent unintended use of older versions that may be present in filter_plugins/ directory on existing installs. Add lib_utils to meta depends for roles Also consolidate some plugins into lib_utils from various other areas. Update rpm spec, obsolete plugin rpms.
2017-12-07Merge pull request #6372 from mtnbikenc/include-to-include_tasksOpenShift Merge Robot
Automatic merge from submit-queue. Include Deprecation: Convert to include_tasks For all roles/ * Converts to include_tasks: for dynamic includes * Converts to import_tasks: for static includes Trello: https://trello.com/c/ZTyZu3UM/484-3-ansible-24-include-deprecation
2017-12-06openshift_logging_kibana: fix mixing parenLuke Meyer
2017-12-06Include Deprecation: Convert to include_tasksRussell Teague
2017-12-05Fix hosted varsMichael Gugino
Remove hosted vars from openshift_facts. The current pattern is causing a bunch of undesired sideffects.
2017-11-27dist.iteritems() no longer exists in Python 3.Jan Pazdziora
2017-11-07Addressing tox errorsEric Wolinetz
2017-11-06Updating logging components image defaulting pattern to match ↵Eric Wolinetz
openshift_logging pattern
2017-10-27bug 1506073. Lower cpu request for logging when it exceeds limitJeff Cantrill
2017-10-23Bug 1452939 - change Logging & Metrics imagePullPolicyJan Wozniak
- all images logging and metrics change their default imagePullPolicy from Always to IfNotPresent
2017-10-19Use "requests" for CPU resources instead of limitsPeter Portante
We now use a CPU request to ensure logging infrastructure pods are not capped by default for CPU usage. It is still important to ensure we have a minimum amount of CPU. We keep the use of the variables *_cpu_limit so that the existing behavior is maintained. Note that we don't want to cap an infra pod's CPU usage by default, since we want to be able to use the necessary resources to complete it's tasks. Bug 1501960 (https://bugzilla.redhat.com/show_bug.cgi?id=1501960)
2017-09-08Merge pull request #5289 from jcantrill/1487573_fix_allowed_es_versionOpenShift Bot
Merged by openshift-bot
2017-09-01bug 1487573. Bump the allowed ES versionsJeff Cantrill
2017-08-30logging set memory request to limitJeff Cantrill
2017-08-29Revert "logging set memory request to limit"Scott Dodson
2017-08-29Merge pull request #5119 from jcantrill/logging_memory_same_as_limitScott Dodson
logging set memory request to limit
2017-08-25Merge pull request #5044 from wozniakjan/logging_role_based_image_versionsOpenShift Bot
Merged by openshift-bot
2017-08-23logging set memory request to limitJeff Cantrill
2017-08-23Merge pull request #4761 from wozniakjan/logging_kibana_oomScott Dodson
bug 1468987: kibana_proxy OOM
2017-08-18Bug 1471322: logging roles based image versionsJan Wozniak
Allowing to specify an image version for each logging component https://bugzilla.redhat.com/show_bug.cgi?id=1471322
2017-08-10Fix syntax for when statementRodolfo Carvalho
Without that, playbook runs print warnings such as this: [WARNING]: when statements should not include jinja2 templating delimiters such as {{ }} or {% %}. Found: {{ g_etcd_hosts is not defined and g_new_etcd_hosts is not defined}}
2017-07-27Updating template parameter replica to be more unique to avoid var scope ↵ewolinetz
creeping
2017-07-21Updating openshift_logging_kibana default for kibana hostnameewolinetz
2017-07-14bug 1468987: kibana_proxy OOMJan Wozniak
We currently set the memory allocated to the kibana-proxy container to be the same as `max_old_space_size` for nodejs. But in V8, the heap consists of multiple spaces. The old space has only memory ready to be GC and measuring the used heap by kibana-proxy code, there is at least additional 32MB needed in the code space when `max_old_space_size` peaks. Setting the default memory limit to 256MB here and also changing the default calculation of `max_old_space_size` in the image repository to be only half of what the container receives to allow some heap for other `spaces`.
2017-06-29Adding labels for elasticsearch and kibana servicesewolinetz
2017-06-08Updated to using oo_random_word for secret genewolinetz
2017-06-08Updating kibana to store session and oauth secrets for reuse, fix ↵ewolinetz
oauthclient generation for ops
2017-05-31Updating Kibana-proxy secret key name, fixing deleting secrets, fixed extra ↵ewolinetz
ES dc creation
2017-05-23Fixing tux warnings and some final clean upewolinetz
2017-05-22Appease travisScott Dodson
2017-05-22Add a readiness probe to the Kibana containerSteve Kuznetsov
In order to ensure that the Kubernetes machinery can determine when the Kibana Pods are becoming ready, we need to add a readiness probe to the Containers that make up those pods. The Kibana readiness probe simply hits the base URL at `http://localhost:5601/` and expects a 200. Signed-off-by: Steve Kuznetsov <skuznets@redhat.com>
2017-05-22Create logging deployments with non-zero replica countsSteve Kuznetsov
When we currently create the set of logging `DeploymentConfig`s, we create them with zero desired replicas. This causes the deployment to immediately succeed as there is no work to be done. This inhibits our ability to use nice CLI UX features like `oc rollout status` to monitor the logging stack deployments. Instead, we should can create the configs with the correct number of replicas in the first place and stop using `oc scale` to bring them up after the fact. Signed-off-by: Steve Kuznetsov <skuznets@redhat.com>
2017-05-22Pulling changes from master branchewolinetz
2017-05-22Pulling in changes from masterewolinetz
2017-05-22Decomposing openshift_logging role into subcomponent rolesewolinetz