Skip to content

Commit 66a228c

Browse files
Merge branch 'main' into fix_e2e_tests
2 parents 0a06252 + 2f07cad commit 66a228c

File tree

13 files changed

+2620
-2592
lines changed

13 files changed

+2620
-2592
lines changed

config/recipes/istio-gateway/README.asciidoc

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,14 @@ NOTE: These manifests were tested with ECK 1.0.1, Istio 1.5.0, and Kubernetes 1.
1212

1313
== Prerequisites
1414

15-
- Install Istio with the Secret Discovery Service (SDS) enabled
15+
- Install Istio with ingress gateway enabled (default profile) and for demonstration purposes we enable proxy logging
1616
+
1717
[source,sh]
1818
----
19-
istioctl manifest generate \
20-
--set values.global.mtls.enabled=true \
21-
--set values.global.sds.enabled=true \
22-
--set values.kiali.enabled=true \
23-
--set values.global.proxy.accessLogFile="/dev/stdout" \
24-
--set values.gateways.istio-egressgateway.enabled=false \
25-
--set values.gateways.istio-ingressgateway.sds.enabled=true | kubectl apply -f -
19+
istioctl install --set meshConfig.accessLogFile=/dev/stdout
2620
----
21+
22+
2723
- Install ECK with the Istio sidecar. See: https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-service-mesh-istio.html
2824
- Enforce mTLS
2925
+
@@ -118,7 +114,7 @@ Send a request to Elasticsearch
118114
----
119115
curl -k \
120116
--resolve "elasticsearch.ekmnt:$SECURE_INGRESS_PORT:$INGRESS_HOST" \
121-
-u "elastic:$ELASTICSEARCH_PASSWORD" \
117+
-u "elastic:$ELASTIC_PASSWORD" \
122118
"https://elasticsearch.ekmnt:$SECURE_INGRESS_PORT/_cat/health?v"
123119
----
124120

docs/advanced-topics/service-meshes.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ link:https://www.elastic.co/guide/en/cloud-on-k8s/master/k8s-{page_id}.html[View
55
****
66
endif::[]
77

8-
:istio_version: 1.6.1
8+
:istio_version: 1.24.3
99
:linkerd_version: 2.7.0
1010

1111
[id="{p}-{page_id}"]

docs/docset.yml

Lines changed: 489 additions & 0 deletions
Large diffs are not rendered by default.

docs/reference/api-docs.asciidoc

Lines changed: 0 additions & 2546 deletions
This file was deleted.

docs/reference/api-docs.md

Lines changed: 2073 additions & 0 deletions
Large diffs are not rendered by default.

docs/reference/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
mapped_pages:
3+
- https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-reference.html
4+
applies_to:
5+
deployment:
6+
eck: all
7+
---
8+
9+
# Elastic Cloud on Kubernetes [k8s-reference]
10+
11+
This section contains reference information for {{eck}}, including:
12+
13+
* [API Reference](./api-docs.md)

docs/reference/toc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
toc:
2+
- file: index.md
3+
- file: api-docs.md

docs/release-notes/2.16.0.asciidoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
[[release-notes-2.16.0]]
55
== {n} version 2.16.0
66

7+
[[breaking-2.16.0]]
8+
[float]
9+
=== Breaking changes
710

11+
* The initContainer for Kibana was renamed from `elastic-internal-init-config` to `elastic-internal-init` which could cause issues when a user has overridden the `podtemplate.spec.initContainers` with custom values. The recommendation is to link:https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-troubleshooting-methods.html#k8s-exclude-resource[exclude the Kibana resource from reconciliation] temporarily during upgrade of ECK and adjust the Kibana manifest to match the new initContainer name. After the ECK upgrade is complete remove the managed annotation from the Kibana manifest. {issue}8426[#8426]
812

913
[[feature-2.16.0]]
1014
[float]

hack/api-docs/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ build_docs() {
3737
echo "Generating API reference documentation"
3838
"${BIN_DIR}"/crd-ref-docs --source-path="${REPO_ROOT}"/pkg/apis \
3939
--config="${SCRIPT_DIR}"/config.yaml \
40-
--renderer=asciidoctor \
40+
--renderer=markdown \
4141
--templates-dir="${SCRIPT_DIR}"/templates \
42-
--output-path="${DOCS_DIR}"/reference/api-docs.asciidoc
42+
--output-path="${DOCS_DIR}"/reference/api-docs.md
4343
)
4444
}
4545

hack/api-docs/templates/gv_details.tpl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{{- define "gvDetails" -}}
22
{{- $gv := . -}}
3-
[id="{{ asciidocGroupVersionID $gv | asciidocRenderAnchorID }}"]
4-
== {{ $gv.GroupVersionString }}
3+
4+
% TODO add function to crd-ref-docs return anchor used in links docs-v3 does not seem to produce valid markdown anchors
5+
## {{ $gv.GroupVersionString }} [#{{ markdownGroupVersionID $gv | replace "-" "" }}]
56

67
{{ $gv.Doc }}
78

89
{{- if $gv.Kinds }}
9-
.Resource Types
10+
### Resource Types
1011
{{- range $gv.SortedKinds }}
11-
- {{ $gv.TypeForKind . | asciidocRenderTypeLink }}
12+
- {{ $gv.TypeForKind . | markdownRenderTypeLink }}
1213
{{- end }}
1314
{{ end }}
1415

0 commit comments

Comments
 (0)