Skip to content

Commit 70a1ca3

Browse files
authored
Merge branch 'main' into 190/edu-004-start-stop
2 parents 93a8bb5 + 6229b2f commit 70a1ca3

File tree

173 files changed

+2874
-235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+2874
-235
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/release-notes/ @elastic/docs
3636

3737
/release-notes/apm-agents/ @elastic/ingest-docs
38-
/release-notes/elastic-cloud-serverless/ @elastic/admin-docs
38+
/release-notes/elastic-cloud-serverless/ @elastic/admin-docs @elastic/docs-serverless-release-team
3939
/release-notes/elastic-observability/ @elastic/ski-docs
4040
/release-notes/elastic-security/ @elastic/ski-docs
4141
/release-notes/elasticsearch-clients/ @elastic/developer-docs
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Update Kube-Stack Version
2+
3+
on:
4+
schedule:
5+
# Run every Monday at 9:00 AM UTC
6+
- cron: '0 9 * * 1'
7+
workflow_dispatch: # Allow manual triggering
8+
9+
jobs:
10+
update-kube-stack-version:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
with:
17+
token: ${{ secrets.GITHUB_TOKEN }}
18+
19+
- name: Set up Python
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: '3.9'
23+
24+
- name: Run kube-stack version update script
25+
run: |
26+
cd scripts
27+
python update_kube_stack_version.py
28+
29+
- name: Check for changes
30+
id: verify-changed-files
31+
run: |
32+
if [ -n "$(git status --porcelain)" ]; then
33+
echo "changed=true" >> $GITHUB_OUTPUT
34+
else
35+
echo "changed=false" >> $GITHUB_OUTPUT
36+
fi
37+
38+
- name: Commit and push changes
39+
if: steps.verify-changed-files.outputs.changed == 'true'
40+
run: |
41+
git config --local user.email "[email protected]"
42+
git config --local user.name "GitHub Action"
43+
git add docs/docset.yml
44+
git commit -m "chore: update kube-stack version [skip ci]"
45+
git push
46+
47+
- name: Create Pull Request
48+
if: steps.verify-changed-files.outputs.changed == 'true'
49+
uses: peter-evans/create-pull-request@v5
50+
with:
51+
token: ${{ secrets.GITHUB_TOKEN }}
52+
commit-message: "chore: update kube-stack version"
53+
title: "chore: update kube-stack version"
54+
body: |
55+
This PR automatically updates the kube-stack version in `docs/docset.yml` based on the latest version from the elastic-agent repository.
56+
57+
**Changes:**
58+
- Updated kube-stack version in docset.yml
59+
60+
This PR was created automatically by the weekly kube-stack version update workflow.
61+
branch: update-kube-stack-version
62+
delete-branch: true
63+
labels: |
64+
automated
65+
documentation

deploy-manage/api-keys.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ applies_to:
66
ece: ga
77
self: ga
88
serverless: ga
9+
navigation_title: API keys
910
---
1011

11-
# API keys
12+
# Elastic API keys
1213

1314
API keys are security mechanisms used to authenticate and authorize access to your deployments and {{es}} resources.
1415

deploy-manage/deploy/cloud-enterprise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In ECE, a deployment is a managed {{stack}} environment that provides users with
4444

4545
The section covers the following tasks:
4646

47-
* [Deploy ECE orchestrator](./cloud-enterprise/deploy-an-orchestrator.md)
47+
* [Deploy an ECE orchestrator](./cloud-enterprise/deploy-an-orchestrator.md)
4848
- [Prepare the environment](./cloud-enterprise/prepare-environment.md)
4949
- [Install ECE](./cloud-enterprise/install.md)
5050
- [Air gapped installations](./cloud-enterprise/air-gapped-install.md)

deploy-manage/deploy/cloud-enterprise/access-kibana.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Access {{kib}}
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-enterprise/current/ece-access-kibana.html
45
- https://www.elastic.co/guide/en/cloud-enterprise/current/ece-manage-kibana.html
@@ -9,7 +10,7 @@ products:
910
- id: cloud-enterprise
1011
---
1112

12-
# Access {{kib}} [ece-access-kibana]
13+
# Access {{kib}} on {{ece}} [ece-access-kibana]
1314

1415
{{kib}} is an open source analytics and visualization platform designed to search, view, and interact with data stored in {{es}} indices.
1516

deploy-manage/deploy/cloud-enterprise/add-plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
navigation_title: Configure plugins and extensions
2+
navigation_title: Add plugins and extensions
33
applies_to:
44
deployment:
55
ece:
66
---
77

8-
# Add plugins and extensions [ece-adding-plugins]
8+
# Add plugins and extensions in {{ece}} [ece-adding-plugins]
99

1010
Plugins extend the core functionality of {{es}}. {{ece}} makes it easy to add plugins to your deployment by providing a number of plugins that work with your version of {{es}}. One advantage of these plugins is that you generally don’t have to worry about upgrading plugins when upgrading to a new {{es}} version, unless there are breaking changes. The plugins are upgraded along with the rest of your deployment.
1111

deploy-manage/deploy/cloud-enterprise/deploy-an-orchestrator.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
applies_to:
33
deployment:
44
ece: all
5+
navigation_title: Deploy an orchestrator
56
---
6-
# Deploy an orchestrator
7+
# Deploy an {{ece}} orchestrator
78

89
{{ece}} (ECE) provides a centralized platform that allows organizations to run {{es}}, {{kib}}, and other {{stack}} components across multiple machines, whether in a private or public cloud, virtual machines, or your own premises.
910

deploy-manage/deploy/cloud-enterprise/ece-install-offline-images.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ Enterprise Search is not available in versions 9.0+.
8282
| docker.elastic.co/cloud-release/kibana-cloud:9.1.1 | ECE 4.0.0 |
8383
| docker.elastic.co/cloud-release/elastic-agent-cloud:9.1.1 | ECE 4.0.0 |
8484
| | |
85+
| [{{es}}, {{kib}}, APM, and Enterprise Search stack pack: 9.0.7](https://download.elastic.co/cloud-enterprise/versions/9.0.7.zip) | ECE 4.0.0 |
86+
| docker.elastic.co/cloud-release/elasticsearch-cloud-ess:9.0.7 | ECE 4.0.0 |
87+
| docker.elastic.co/cloud-release/kibana-cloud:9.0.7 | ECE 4.0.0 |
88+
| docker.elastic.co/cloud-release/elastic-agent-cloud:9.0.7 | ECE 4.0.0 |
89+
| | |
8590
| [{{es}}, {{kib}}, APM, and Enterprise Search stack pack: 9.0.6](https://download.elastic.co/cloud-enterprise/versions/9.0.6.zip) | ECE 4.0.0 |
8691
| docker.elastic.co/cloud-release/elasticsearch-cloud-ess:9.0.6 | ECE 4.0.0 |
8792
| docker.elastic.co/cloud-release/kibana-cloud:9.0.6 | ECE 4.0.0 |
@@ -135,6 +140,12 @@ Enterprise Search is not available in versions 9.0+.
135140
| docker.elastic.co/cloud-release/elastic-agent-cloud:8.19.1 | ECE 3.0.0 |
136141
| docker.elastic.co/cloud-release/enterprise-search-cloud:8.19.1 | ECE 3.0.0 |
137142
| | |
143+
| [{{es}}, {{kib}}, APM, and Enterprise Search stack pack: 8.18.7](https://download.elastic.co/cloud-enterprise/versions/8.18.7.zip) | ECE 3.0.0<br>(+ Docker 20.10.10+ required for 8.16+) |
144+
| docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.7 | ECE 3.0.0<br>(+ Docker 20.10.10+ required for 8.16+) |
145+
| docker.elastic.co/cloud-release/kibana-cloud:8.18.7 | ECE 3.0.0 |
146+
| docker.elastic.co/cloud-release/elastic-agent-cloud:8.18.7 | ECE 3.0.0 |
147+
| docker.elastic.co/cloud-release/enterprise-search-cloud:8.18.7 | ECE 3.0.0 |
148+
| | |
138149
| [{{es}}, {{kib}}, APM, and Enterprise Search stack pack: 8.18.6](https://download.elastic.co/cloud-enterprise/versions/8.18.6.zip) | ECE 3.0.0<br>(+ Docker 20.10.10+ required for 8.16+) |
139150
| docker.elastic.co/cloud-release/elasticsearch-cloud-ess:8.18.6 | ECE 3.0.0<br>(+ Docker 20.10.10+ required for 8.16+) |
140151
| docker.elastic.co/cloud-release/kibana-cloud:8.18.6 | ECE 3.0.0 |

deploy-manage/deploy/cloud-enterprise/ece-regional-deployment-aliases.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ applies_to:
66
ece: all
77
products:
88
- id: cloud-enterprise
9+
navigation_title: Custom endpoint aliases
910
---
1011

11-
# Custom endpoint aliases [ece-regional-deployment-aliases]
12+
# Configure custom endpoint aliases on {{ece}} [ece-regional-deployment-aliases]
1213

1314
Custom aliases for your deployment endpoints on {{ece}} allow you to have predictable, human-readable URLs that can be shared easily.
1415

deploy-manage/deploy/cloud-enterprise/keep-track-of-deployment-activity.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Keep track of deployment activity
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-enterprise/current/ece-activity-page.html
45
applies_to:
@@ -8,7 +9,7 @@ products:
89
- id: cloud-enterprise
910
---
1011

11-
# Keep track of deployment activity [ece-activity-page]
12+
# Keep track of deployment activity on {{ece}} [ece-activity-page]
1213

1314
The deployment **Activity** page gives you a convenient way to follow all configuration changes that have been applied to your deployment, including which resources were affected, when the changes were applied, who initiated the changes, and whether or not the changes were successful. You can also select **Details** for an expanded, step-by-step view of each change applied to each deployment resource.
1415

0 commit comments

Comments
 (0)