UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 0194e012 authored by Zach Callahan's avatar Zach Callahan
Browse files

Merge branch '213-ek-mtls-fix' into 'main'

Resolve "SSO Startup Fails Starting With 1.18.0-bb.3"

Closes #213

See merge request !307
parents b9bb6ea4 60d0d1af
No related branches found
No related tags found
1 merge request!307Resolve "SSO Startup Fails Starting With 1.18.0-bb.3"
Pipeline #3675566 passed
......@@ -4,6 +4,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
---
## [1.19.0-bb.3] - 2024-10-11
### Changed
- Configured istio `DestinationRule` to allow envoy to accept certs presented by ElasticSearch
- Updated Kibana config to use `http` scheme when communicating with istio-enabled ElasticSearch
## [1.19.0-bb.2] - 2024-09-30
### Removed
......
<!-- Warning: Do not manually edit this file. See notes on gluon + helm-docs at the end of this file for more information. -->
# elasticsearch-kibana
![Version: 1.19.0-bb.2](https://img.shields.io/badge/Version-1.19.0--bb.2-informational?style=flat-square) ![AppVersion: 8.15.1](https://img.shields.io/badge/AppVersion-8.15.1-informational?style=flat-square)
![Version: 1.19.0-bb.3](https://img.shields.io/badge/Version-1.19.0--bb.3-informational?style=flat-square) ![AppVersion: 8.15.1](https://img.shields.io/badge/AppVersion-8.15.1-informational?style=flat-square)
Configurable Deployment of Elasticsearch and Kibana Custom Resources Wrapped Inside a Helm Chart.
### Upstream Release Notes
## Upstream Release Notes
This chart has no upstream and is maintained entirely by the Big Bang team. It is
(usually) updated any time new versions of elasticsearch and kibana are released
......@@ -15,14 +15,15 @@ upstream. The changelog for both can be found at the following places:
- [Kibana](https://www.elastic.co/guide/en/kibana/current/release-notes.html)
## Learn More
* [Application Overview](docs/overview.md)
* [Other Documentation](docs/)
- [Application Overview](docs/overview.md)
- [Other Documentation](docs/)
## Pre-Requisites
* Kubernetes Cluster deployed
* Kubernetes config installed in `~/.kube/config`
* Helm installed
- Kubernetes Cluster deployed
- Kubernetes config installed in `~/.kube/config`
- Helm installed
Install Helm
......@@ -30,8 +31,9 @@ https://helm.sh/docs/intro/install/
## Deployment
* Clone down the repository
* cd into directory
- Clone down the repository
- cd into directory
```bash
helm install elasticsearch-kibana chart/
```
......
apiVersion: v2
name: elasticsearch-kibana
description: Configurable Deployment of Elasticsearch and Kibana Custom Resources Wrapped Inside a Helm Chart.
version: 1.19.0-bb.2
version: 1.19.0-bb.3
appVersion: 8.15.1
dependencies:
- name: gluon
......
......@@ -9,4 +9,5 @@ spec:
trafficPolicy:
tls:
mode: SIMPLE
{{- end }}
\ No newline at end of file
insecureSkipVerify: true
{{- end }}
......@@ -9,6 +9,10 @@ spec:
image: {{ .Values.kibana.image.repository }}:{{ .Values.kibana.image.tag }}
config:
{{- if and .Values.istio.enabled .Values.istio.elasticsearch.enabled }}
elasticsearch.hosts:
- http://{{ .Release.Name }}-es-http:9200
{{- end }}
{{- if .Values.bbtests.enabled }}
# To make Cypress happy we need to disable the strict CSP rules
csp.strict: false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment